amelie Posted September 28, 2010 Report Share Posted September 28, 2010 Hallo, wir würden gerne die beiden Crosselling Funktionen parallel nutzen. 1. manuelles Crosselling 2. automatisches Crosselling Und zwar sollte es so aussehen das wenn manuell Cross-Selling Artikel einem Artikel zugewiesen werden das automatische Crosselling nicht angezeigt wird. Wenn kein Crossellingartikel zugeweisen soll das automatische Crosselling natürlich gezeigt werden. Dies wäre eine super Lösung da wir sehr viele kleine Produkte haben die wir nicht alle mit der manuellen Funktion ausstatten können jedoch auch einige wichtige große Produkte bei denen wir manuell Auswählen müssen. Herzlichen Dank für Hilfe, Amelie Link to comment Share on other sites More sharing options...
giller Posted September 28, 2010 Report Share Posted September 28, 2010 {if $cross_sell_products_data > 0} <h2>{txt key=TEXT_HEADING_CROSS_SELL}</h2> <table class="productCrossSell"> {foreach name=aussen item=cross_sell_products_data from=$_cross_selling} <tr> {if $cross_sell_products_data.products_image!=''}<td class="productCrossSellImage"><a href="{$cross_sell_products_data.products_link}">{img img=$cross_sell_products_data.products_image type=m_thumb class=productImageBorder alt=$cross_sell_products_data.products_name}</a></td>{/if} <td class="productCrossSellContent"> <h2><a href="{$cross_sell_products_data.products_link}">{$cross_sell_products_data.products_name}</a></h2> <p class="price">{$cross_sell_products_data.products_price.formated}</p> </td> </tr> {/foreach} </table> {else} <h2>{txt key=TEXT_HEADING_AUTO_CROSS_SELL}</h2> <table class="productCrossSell"> {foreach name=aussen item=cross_sell_products_data from=$_auto_cross_sell} <tr> {if $cross_sell_products_data.products_image!=''}<td class="productCrossSellImage"><a href="{$cross_sell_products_data.products_link}">{img img=$cross_sell_products_data.products_image type=m_thumb class=productImageBorder alt=$cross_sell_products_data.products_name}</a></td>{/if} <td class="productCrossSellContent"> <h2><a href="{$cross_sell_products_data.products_link}">{$cross_sell_products_data.products_name}</a></h2> <p class="price">{$cross_sell_products_data.products_price.formated}</p> </td> </tr> {/foreach} </table> {/if} Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.