Jump to content
xt:Commerce Community Forum

...haben auch folgende Artikel gekauft


PageStylist

Recommended Posts

Hallo Christoph,

um mehrere Spalten zu erhalten, musst du die Datei also_purchased.html modifizieren.

Dazu braucht es

 {foreach name=aussen item=module_data from=$module_content}
{php} $col++;[/PHP]

und

[PHP]{php}

if ($col>=3) {
$col=0;
echo '</tr>
';
}
{/php}
{/foreach}[/PHP]

Die rote 3 zeigt an, dass die Ausgabe in 3 Spalten erfolgen soll.

Wo genau Du den Code ändern musst, kannst Du auch aus diesem Thread entnehmen, hier wurde die product_listing.html umgeändert.

http://xt-commerce.de/forum/showthread.php?t=56358

Das Prinzip ist IMMER das gleiche.

Viel Erfolg!

Link to comment
Share on other sites

Eine Verbesserungsvorschlag!

habe eine 4-spaltige und wenn die Produktzahl unter 4 in der Liste ist, sieht es biesschen unschoen aus.

Deswegen haben ich einen zusaetzlichen Counter hinzugefuegt, um alles nach link zu ordnen.

Beispiel: http://www.dust-naturkultur.de/index.php/cat/c116_Sonnenpflege.html

{php} 
if($col>=4)
{
$col=0;
$row++;
echo '</tr><tr>';
}
{/php}
{/foreach}
{php}
if($row==0)
{
if($col==1)
{
echo '<td width="170"> </td><td width="170"> </td><td width="170"> </td>';
}
else if($col==2)
{
echo '<td width="170"> </td><td width="170"> </td>';
}
else if($col==3)
{
echo '<td width="170"> </td>';
}
}
{/php} [/PHP]

Link to comment
Share on other sites

Archived

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

×
  • Create New...