cosmo123 Posted April 17, 2005 Report Share Posted April 17, 2005 Hallo. Wie schon im titel erw?hnt w?rde ich gerne wissen, wie man die Product?bersicht nicht einspaltig, wie es standard ist, sonst mehrspaltig macht. ich wei? dass man in einer .php datei cols 1 durch cols 2 erstzen muss, aber ich wei? leider nicht mehr welche datei. kann mir einer helfen. danke ! Link to comment Share on other sites More sharing options...
KALE MX Posted April 17, 2005 Report Share Posted April 17, 2005 das ist im templates/dein_template/modul/product_listing bereich in der product_listing_v1.html Hoffe konnte dir weiterhelfen. MfG Link to comment Share on other sites More sharing options...
cosmo123 Posted April 17, 2005 Author Report Share Posted April 17, 2005 ne tut mir leid, aber ich habe da noch nichts gefunden wo ich das einstellen k?nnte. kannst du mir vielleicht die stelle zeigen ? ich bin aber auch der meinung gewesen das man das in einer .php datei reinschreiben muss. Link to comment Share on other sites More sharing options...
polkhigh33 Posted April 17, 2005 Report Share Posted April 17, 2005 du musst die foreach schleife in die product_listing.html einbauen, analog zur z.b. new_products.html. gibt einige threads dar?ber, bitte suche nutzen. Link to comment Share on other sites More sharing options...
cosmo123 Posted April 17, 2005 Author Report Share Posted April 17, 2005 ich bin mir nicht wirklich sicher ob ihr wisst was ich gerne ver?ndern m?chte ?!?! ^^ Link to comment Share on other sites More sharing options...
dukie6666 Posted April 18, 2005 Report Share Posted April 18, 2005 polkhigh33 hat es dir doch geschrieben... vergleiche die datei product_listing.php mit der new_products.html. baue die dort vorhandene php schleife in die product_listing ein. Link to comment Share on other sites More sharing options...
cosmo123 Posted April 19, 2005 Author Report Share Posted April 19, 2005 Originally posted by dukie6666@Apr 18 2005, 05:57 AM polkhigh33 hat es dir doch geschrieben... vergleiche die datei product_listing.php mit der new_products.html. baue die dort vorhandene php schleife in die product_listing ein. und wo finde ich die product_listing.php ? und werden in der news_products.html die artikel 2-spaltig dargestellt ? oder warum soll ich mich an der orientieren ? Link to comment Share on other sites More sharing options...
cosmo123 Posted April 21, 2005 Author Report Share Posted April 21, 2005 jo ich habe es probiert, leider ohne effekt. vielleicht habe ich ja was falsch gemacht. schaut euch das doch bitte mal an {config_load file="$language/lang_$language.conf" section="index"} <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td><font size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong><font color="#666666" size="4">{$CATEGORIES_NAME}</font></strong> </font></td> <td align="right"></td> </tr> </table> {if $CATEGORIES_DESCRIPTION} <font size="1" face="Verdana, Arial, Helvetica, sans-serif"> <br> {$CATEGORIES_DESCRIPTION}</font> <br>{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}">{/if} {/if} { if $MANUFACTURER_DROPDOWN} <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main"><div align="right">{#text_show#} {$MANUFACTURER_DROPDOWN}</div></td> </tr> </table> {/if} <table width="100%" border="0" cellspacing="0" cellpadding="0"> {foreach name=aussen item=module_data from=$module_content} {php} $col++; {/php} <tr> <td> <div align="center"> <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td colspan="3"></td> </tr> <tr bgcolor="#d2e6ba"> <td colspan="2" class="main"> <strong><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></strong> </td><td align="right" class="main"> <b>{$module_data.PRODUCTS_PRICE}</b> </td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="2"> <tr> <td width="1" valign="top" rowspan="3"> {if $module_data.PRODUCTS_IMAGE!=''}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" border="0"></a>{/if} </td><td style="border-right:0px #b0b0b0 solid;" valign="top" colspan="2" class="main"> {$module_data.PRODUCTS_SHORT_DESCRIPTION} </td> </tr> <tr> <td style="border-right:0px #b0b0b0 solid;" colspan="3"></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr bgcolor="#d2e6ba"> <td>{if $module_data.SHIPPING_NAME} <table width="100" border="0" cellpadding="0" cellspacing="0"> <tr valign="bottom"> <td width="50" class="main">{#text_shippingtime#}</td> {if $module_data.SHIPPING_IMAGE} <td width="50"><img src="{$module_data.SHIPPING_IMAGE}"></td> {/if} <td nowrap class="main">{$module_data.SHIPPING_NAME}</td> </tr> </table> {/if}</td> <td align="right">{$module_data.BUTTON_BUY_NOW}</td> </td> </tr> </table> </div></td> {php} if ($col>=2) { $col=0; echo '</tr><tr>'; } {/php} {/foreach}</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...
polkhigh33 Posted April 21, 2005 Report Share Posted April 21, 2005 fast richtig hast nur den beginn der foreach-schleife falsch gesetzt, die geh?rt hinter das <tr>, also table width="100%" border="0" cellspacing="0" cellpadding="0"> {foreach name=aussen item=module_data from=$module_content} {php} $col++; {/php} <tr> <td> <div align="center"> ?ndern intable width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> {foreach name=aussen item=module_data from=$module_content} {php} $col++; {/php} <td> <div align="center">und es sollte gehn. cache abschalten/l?schen nicht vergessen. Link to comment Share on other sites More sharing options...
cosmo123 Posted April 21, 2005 Author Report Share Posted April 21, 2005 ihr seid cool. danke euch :rock: :rock: :rock: :rock: :rock: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.