forum.coppermine-gallery.net

Support => Deutsch (German) => Language Specific Support => cpg1.4.x Deutsch (German) => Topic started by: zar on February 19, 2007, 08:05:40 pm

Title: Photo Shop Plugin - Preise mit 0,00 EUR anzeigen
Post by: zar on February 19, 2007, 08:05:40 pm
Hallo,

ich möchte Bilder auch kostenfrei anbieten. Dafür benötige ich auch den Warenkorb. Beim alten Plugin (1.0) wurden auch Preise= 0.00 EUR angezeigt. Jetzt erst ab 0.01. Das schreckt aber ab.
Was muss ich ändern, damit kostenlose Angebote wieder gelistet werden?
(Ich nutze den Shop ohne Paypal-Anbindung).

Danke für Hilfe.
Marc
Title: Re: Photo Shop Plugin - Preise mit 0,00 EUR anzeigen
Post by: Stramm on February 20, 2007, 07:41:17 pm
in codebase.php
Code: [Select]
if ($value['price'] != 0) {
$html.="<option value=\"{$value['id']}\">{$value['name']} - {$lang_photoshop['USD']}{$value['price']}</option>";
}
durch
Code: [Select]
$html.="<option value=\"{$value['id']}\">{$value['name']} - {$lang_photoshop['USD']}{$value['price']}</option>";ersetzen

hab's nicht probiert, also keine Garantie auf irgendwelche Problemchen oder ähnliches
Title: Re: Photo Shop Plugin - Preise mit 0,00 EUR anzeigen
Post by: zar on February 21, 2007, 11:20:23 am
super. Danke. Es funktioniert.
LG
Marc