PageStylist Posted March 21, 2008 Report Share Posted March 21, 2008 Hallo ich hab mal eine Frage, kann man auch von diesen Artikeln immer 3 nebeneinander anordnen??? Oder vielleicht alle in eine Zeile und rechts und links im Content so einen Pfeil der dann weiterscrollt oder so??? Über eure Antworten wäre ich sehr dankbar. Gruß Christoph Link to comment Share on other sites More sharing options...
SonjaSt Posted March 25, 2008 Report Share Posted March 25, 2008 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 More sharing options...
Ralf-Peter Posted March 25, 2008 Report Share Posted March 25, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.