Jump to content
xt:Commerce Community Forum

2- Oder Mehrspaltige Produtct_listing


cosmo123

Recommended Posts

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

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

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

fast richtig :D

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 in
table 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

Archived

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

×
  • Create New...