Jump to content
xt:Commerce Community Forum

Frage zu MASTER / SLAVE und zu Eingabetext


Nearle

Recommended Posts

  • 3 weeks later...

Hallo,

also mich wurmt das auch ein bissi mit dem Master/Slave. So ganz durchdacht ist es nicht. Jetzt würde ich aber schon gerne wissen, was genau Du gecodet hast, damit da "ab 19,90 Euro" steht.

Kannst Du vielleicht mal den Auszugs des Codes hier posten? Mit "ob Masterartikel" kann ich leider net allzuviel anfangen.

Wäre echt super! Vielen Dank im Voraus.

Link to comment
Share on other sites

Hallo,

also mich wurmt das auch ein bissi mit dem Master/Slave. So ganz durchdacht ist es nicht. Jetzt würde ich aber schon gerne wissen, was genau Du gecodet hast, damit da "ab 19,90 Euro" steht.

Kannst Du vielleicht mal den Auszugs des Codes hier posten? Mit "ob Masterartikel" kann ich leider net allzuviel anfangen.

Wäre echt super! Vielen Dank im Voraus.

dafür wäre ich auch amilo..

oder schick uns den code evtl. per PN..

bei mir steht auch momentan nur 0,00 oder der niedrigste stafflepreis, was net besonders schön aussieht..

Gruß

GoriBoy

Link to comment
Share on other sites

Öffnet die product_listing_v1.html und sucht folgenden Absatz:

{if $smarty.const._CUST_STATUS_SHOW_PRICE eq '1'}

		<p class="price">{$module_data.products_price.formated}</p>

		<p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

		{if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

		{/if}

Den ersetzt Ihr komplett mit:

{if $module_data.products_master_flag eq '1'}<p class="price">ab{$module_data.products_price.formated}</p>

<p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

{if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

{else}

<p class="price">{$module_data.products_price.formated}</p>

<p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

{if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

{/if}

Das geht sicherlich auch irgenwie einfacher, aber so funktioniert es 100% ig.

MfG. Hansen

Link to comment
Share on other sites

Archived

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

×
  • Create New...