Jump to content
xt:Commerce Community Forum

Preis auf Anfrage!


Karisma

Recommended Posts

Hi Thomas,

ich hab das fuer einen Freund von mir ( www.heib.de ) ganz einfach damit geloest, dass wenn Artikelpreis 0 = ist, wird Preis auf Anfrage eingesetzt. Schaus dir mal an. Keine grosse Aktion im Admin Panel. Wenn es dir so passt gib mir Bescheid, dann sende ich dir die Aenderungen.

Unter tom (at) outsourcetoasia.de

Gruss Tom

Link to comment
Share on other sites

Hallo, ich weiss das das alles irgendwo zerstrücket steht, aber hier mal zusammenhängend:

in den templates "product_info" und "product_listing"

{$PRODUCTS_PRICE} durch

{if $PRODUCTS_PRICE!=0}{$PRODUCTS_PRICE}{else}Preis auf Anfrage{/if}

und

{if $module_data.PRODUCTS_PRICE!=0} {$module_data.PRODUCTS_PRICE}{/if}

{if $module_data.PRODUCTS_PRICE==0} ?Preis auf Anfrage{/if}

ersetzen

oder (das habe ich nicht ausprobiert, nur der vollstänigkeit halber)

In der Datei product_info.php in ca. Zeile 74, also ÜBER die Zeile:

PHP-Code:

$info_smarty->assign('PRODUCTS_PRICE', $products_price['formated']);

folgendes einfügen:

if ($products_price['formated'] == ' 0,00 EUR'){$products_price['formated'] = "Preis auf Anfrag

e";};

In der Datei product_listing.php in ca. Zeile 68 über der Zeile:

if ($_SESSION['customers_status']['customers_status_show_price'] != '0')

folgendes einfügen:

PHP-Code:

if ($price['formated'] == ' 0,00 EUR'){$price['formated'] = "Preis auf Anfrage";};

Jetzt hat man aber immer noch den Warenkorb- Lösung dafür(keine "Add in Korb"):

{if $PRODUCTS_PRICE!=0}

{$ADD_QTY}{$ADD_CART_BUTTON}

{else}

hier schreibst du, was statt dem warenkorb-button angezeigt werden soll.

{/if}

Link to comment
Share on other sites

  • 2 years later...

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...