Jump to content
xt:Commerce Community Forum

Kunden kauften auch anpassen


peter_berlin

Recommended Posts

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

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

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

Archived

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

×
  • Create New...