hifibau Posted August 12, 2005 Report Share Posted August 12, 2005 Hallo XT Juser habe schon seit einige Zeit versucht mein Problem mit der Suchoption zu l?sen...leider ohne L?sung. OK...meine Frage Besteht die M?glichkeit die Produktlistung auch zwei oder drei Spalten zu Pr?sentieren. Meine Listung sieht zur Zeit so aus Produktlistung Bei der new_products.html geht das ja so weit ich weiss mitif ($col>=3) { Wo kann ich das ?ndern? w?rde mich ?ber einen Tip freuen Gru? Josef Link to comment Share on other sites More sharing options...
nom Posted August 12, 2005 Report Share Posted August 12, 2005 ... und zwar so ... <table width="100%" border="0" cellspacing="3" cellpadding="0"> <tr> {foreach name=aussen item=module_data from=$module_content} {php} $col++; {/php} <td class="start_prod" width="50%" valign="top"> HIER KOMMT DEINE TABELLE WO ALLE PRODUKTINFOS ZU FINDEN SIND. </td> {php} if ($col>=2) { $col=0; echo '</tr><tr>'; } {/php} {/foreach} </tr> </table> 2 Produkte nebeneinander $col>=2 3 Produkte nebeneinander $col>=3 Link to comment Share on other sites More sharing options...
hifibau Posted August 12, 2005 Author Report Share Posted August 12, 2005 Vielen Dank f?r Deine Info :-) Sag mir bitte doch wo ich den Code einf?gen muss Ist das richtig...in der produkt_listing_v1.html ??? Gru? bald auch Sponsor Josef Link to comment Share on other sites More sharing options...
nom Posted August 12, 2005 Report Share Posted August 12, 2005 product_listing_v1.html oder neue Datei anlegen new_products.html new_products_default.html new_products_overview.html Link to comment Share on other sites More sharing options...
hifibau Posted August 12, 2005 Author Report Share Posted August 12, 2005 ohhhh :closedeyes: ich klaube ich bin ein klein wenig zu d**f dazu... meinst Du k?nntest etwas genauer werden mit der Einbindung Sorry...bin Newbie Ich werde Dich auch in meinen Abendlichen Gebeten erw?hnen Gru? Link to comment Share on other sites More sharing options...
nom Posted August 12, 2005 Report Share Posted August 12, 2005 Hier der komplette Quellcode .. Nenne die Datei z.B. product_listing_2spl.html {config_load file="$language/lang_$language.conf" section="index"} <span class="seitenueberschrift">{$CATEGORIES_NAME}</span> <br><br> {if $CATEGORIES_DESCRIPTION} <table width="100%" border="0" cellspacing="0" cellpadding="5"> <tr valign="top"> <td class="main">{$CATEGORIES_DESCRIPTION}</td> {if $CATEGORIES_IMAGE} <td width="140" align="right"><img src="{$CATEGORIES_IMAGE}"></td> </tr>{/if} </table> <img src="{$tpl_path}img/pixel_trans.gif" border="0" width="100%" height="5"><br> {else} <img src="{$tpl_path}img/pixel_trans.gif" border="0" width="100%" height="5"><br> {/if} {if $MANUFACTURER_DROPDOWN} <table border="0" align="right" cellpadding="0" cellspacing="0"> <tr> <td width="10" bgcolor="#eeeeee"></td> <td bgcolor="#eeeeee" class="main">{#sort#}</td> <td width="10" bgcolor="#eeeeee"></td> <td>{$MANUFACTURER_DROPDOWN}</td> <td width="10"></td> </tr> </table> <br><br> {/if} <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="5"> <tr> {foreach name=aussen item=module_data from=$module_content} {php} $col++; {/php} <td class="main" valign="top"><div align="left"> <table width="100%" border="0" cellpadding="0" cellspacing="4" style="border: 1px solid #dddddd;"> <tr> <td><div align="center"><a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" border="0"></a></div></td> </tr> <tr> <td class="main"><div align="center"><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></div></td> </tr> <tr> <td><div align="center"><span class="preis_listing_text">{#preis_text#}</span> <span class="preis_listing">{$module_data.PRODUCTS_PRICE}</span> {$module_data.BUTTON_BUY_NOW} </div></td> </tr> </table> </div></td> {php} if ($col>=2) { $col=0; echo '</tr><tr>'; } {/php} {/foreach} </tr> </table> </div></td> </tr> </table> <br> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>{$NAVIGATION}</td> </tr> </table> {if $result=='false'} <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td style="border: 1px solid; border-color: #ff0000;" bgcolor="#FFCCCC"><div align="center"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">{#text_noproduct#}</font></strong></div></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="right"><br> {$BUTTON}</td> </tr> </table> {/if} Link to comment Share on other sites More sharing options...
hifibau Posted August 13, 2005 Author Report Share Posted August 13, 2005 Vielen Dank der Code hat gesesen Gru Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.