Photo Shop Plugin - Preise mit 0,00 EUR anzeigen Photo Shop Plugin - Preise mit 0,00 EUR anzeigen
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Photo Shop Plugin - Preise mit 0,00 EUR anzeigen

Started by zar, February 19, 2007, 08:05:40 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

zar

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

Stramm

in codebase.php
if ($value['price'] != 0) {
$html.="<option value=\"{$value['id']}\">{$value['name']} - {$lang_photoshop['USD']}{$value['price']}</option>";
}

durch
$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

zar