peter_berlin Posted September 18, 2012 Report Share Posted September 18, 2012 Hallo, ich würde gerne das "Kunden kauften auch"-Modul ein wenig anpassen. Z.Z. werden die Produkte untereinander angezeigt. Ich hätte die Produkte jedoch gerne nebeneinander. Ich finde partout nicht die Stelle an der ich das anpassen muss/kann? Kann mir da jemand helfen? Danke und viele Grüsse Link to comment Share on other sites More sharing options...
SM-55 Posted September 18, 2012 Report Share Posted September 18, 2012 Hi peter, genau das gleiche habe ich schon vor 6 Wochen gefragt, aber keiner kann einen tip geben. ich möchte das auch unbedingt ändern weil untereinander einfach doof aussieht. gruß stephan Carfein-Parfumcar-Parfümiertes-Auto-Scheibenwischwasser Link to comment Share on other sites More sharing options...
dukie6666 Posted September 18, 2012 Report Share Posted September 18, 2012 dazu musst Du folgende Datei entsprechend anpassen: plugins\xt_auto_cross_sell\templates\auto_cross_sell.html Link to comment Share on other sites More sharing options...
SM-55 Posted September 18, 2012 Report Share Posted September 18, 2012 hallo, vielen Dank für den Hinweis.....Soweit war ich auch schon, nur wüsste ich jetzt nicht wie es anzupassen wäre. Gruß Link to comment Share on other sites More sharing options...
peter_berlin Posted September 18, 2012 Author Report Share Posted September 18, 2012 hi dukie, danke erstmal für die schnelle antwort. im template hab ich auch schn nachgesehen, allerdings ist da nur eine tabelle drin und ich weiss leider nicht wie ich da den "umbruch" raus bekomme. anbei mal der code aus der plugins\xt_auto_cross_sell\templates\auto_cross_sell.html --- <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} </tr> <tr> <td class="productCrossSellImage"><a href="{$cross_sell_products_data.products_link}">{$cross_sell_products_data.products_name}</a> <p class="price">{$cross_sell_products_data.products_price.formated}</p></td> </tr> {/foreach} </table> --- kann mir vielleicht jemand die tomaten von den augen nehmen... thx und viele grüsse Link to comment Share on other sites More sharing options...
Sentor77 Posted September 19, 2012 Report Share Posted September 19, 2012 Moin, Obwohl ich keine Tabellen-Designs mag, würde ich hier hergeghen und um die Foreach eine weitere Tabelle schreiben mit nur einer Zeile und pro Produkt die jetzige Tabelle in der Spalte. Sollte dann ungefähr so aussehen: <h2>{txt key=TEXT_HEADING_AUTO_CROSS_SELL}</h2> <table> <tr> {foreach name=aussen item=cross_sell_products_data from=$_auto_cross_sell} <td> <table class="productCrossSell"> <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} </tr> <tr> <td class="productCrossSellImage"><a href="{$cross_sell_products_data.products_link}">{ $cross_sell_products_data.products_name}</a> <p class="price">{$cross_sell_products_data.products_ price.formated}</p></td> </tr> </table> </td> {/foreach} </tr> </table> [/HTML] Ich würde allerdings was ganz neues machen und von Tabellen komplett weg und zu einem DIV-Design wechseln. LG Link to comment Share on other sites More sharing options...
peter_berlin Posted September 19, 2012 Author Report Share Posted September 19, 2012 Hi Sentor77, danke für die Antwort am frühen Morgen ich habe es gestern Abend auch noch hinbekommen, auf ganz ähnliche Weise: <table class="productCrossSell"> <tr>{foreach name=aussen item=cross_sell_products_data from=$_auto_cross_sell}<td class="productCrossSellImage"> {if $cross_sell_products_data.products_image!=''}<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>{/if} <a href="{$cross_sell_products_data.products_link}">{$cross_sell_products_data.products_name}</a> <p class="price">{$cross_sell_products_data.products_price.formated}</p> </td> {/foreach} </tr> </table> Ich glaube auf DIV´s werde ich vorerst verzichten. Trotzdem nochma vielen Dank Gruss Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.