Jump to content
xt:Commerce Community Forum

Mehrere Produkte nebeneinander?


Schornstein

Recommended Posts

Hallo,

da ich denke, dass dies eine Frage zur Software ist (so hoffe ich ;-) ), stelle ich hier meine Frage.

Kann man irgendwo im Shop einstellen, dass in der Produktvorschau, z.B. bei den Top-Produkten auf der Startseite, die Produkte nebeneinander (immer 3 in einer Reihe), erscheinen?

Oder muss man dieses in einer Datei anpassen?

Habe schon mächtig google Bemüht, aber ehrlich gesagt sind sämtliche Infos immer sehr dürftig oder gar nicht vorhanden.

So, ich bedanke mich für die Antworten, die hoffentlich kommen.

Gruß

Heike

Link to comment
Share on other sites

Das geht. Dazu musst du nur die dafür zuständige html datei umschreiben.

bei product_listing wärs z.B. so:

Kurz vor der Ausgabe der Produkte machst das:


<table>
{php}
$k = 3;
$i = 1;
{/php}
[/PHP]

Dann, direkt nachdem Anfang der Ausgabe des Produktes, also direkt nach dem foreach machst du das

[PHP]
{php}
if( $k++ == 2 ) {
echo "<tr>\n";
$k = 1;
}
{/php}
<td>
[/PHP]

am Ende des foreach machst du das:

[PHP]
</td>
{php}
if( $i++ == 2 ) {
echo "</tr>\n";
$i = 1;
}
{/php}
[/PHP]

Und nach der {/foreach} ausgabe schließt du die tabelle wieder

[HTML]</table> [/HTML]

Fertig ;)

Wenn du dich nen bisl mit html bzw. php auskennst sollte das kein prob sein.

PS: hast ne pn von mir :P^^

Link to comment
Share on other sites

Merkwürdig. Die Änderungen haben überhaupt keinen Effekt. Ich habe mal zum Spaß dinge aus dem Template entfernt, um zu sehen, ob überhaupt etwas passiert. Tut es aber nicht. Es kommen nur Fehlermeldungen, wenn ich etwas "kaputt" mache. Das habe ich schlauerweise auch getestet, um zu sehen, ob das Template überhaupt genutzt wird.

Also es wird scheinbar benutzt, aber egal was ich daran ändere, es hat keinen Effekt... Und ja, ich habe den Cache geleert und auch verschiedene Browser getestet :-(

hier mal der Code:



{$categories}

{if $product_listing}

{if $heading_text}<h1>{$heading_text}</h1>{/if}

{if $PRODUCTS_DROPDOWN}{$PRODUCTS_DROPDOWN}{/if}


{if $sort_dropdown.options}

<div class="products_sort">

{form type=form name=sort_dropdown action='dynamic' method=get}

{form type=hidden name=page value='categorie'}

{form type=hidden name=cat value=$current_category_id}

{form type=select name=sorting value=$sort_dropdown.options default='' onchange='this.form.submit();'}

{form type=formend}

</div>

{/if}


{if $MANUFACTURER_DROPDOWN}

<div class="products_sort">

{if $MANUFACTURER_DROPDOWN}{$MANUFACTURER_DROPDOWN}{/if}

</div>

{/if}


{if $manufacturer}

{$manufacturer.MANUFACTURER.manufacturers_description}

{/if}


<table>

{php}

$k = 2;

$i = 1;

{/php} 


<div class="hrproductpreview"></div>

{foreach name=aussen item=module_data from=$product_listing}

  {php}

  if( $k++ == 2 ) {

      echo "<tr>\n";

      $k = 1;

   }

  {/php}

  <td>  

<table class="productPreview" width="100%" border="0" cellspacing="0" cellpadding="0">

  <tr>

    {if $module_data.products_image!=''}<td class="productPreviewImage"><a href="{$module_data.products_link}">{img img=$module_data.products_image type=m_info class=productImageBorder alt=$module_data.products_name}</a></td>{/if}

    <td class="productPreviewContent">

		<h2><a href="{$module_data.products_link}">{$module_data.products_name}</a></h2>

		{if $module_data.date_available!=''}

		<ul class="info_info">

			<li class="infoInfo">{txt key=TEXT_PRODUCT_AVAILABLE} {$module_data.date_available|date_format:"%A, %B %e, %Y"}</li>

		</ul>

		{/if}

		{if $module_data.review_stars_rating}

			<div class="reviews_rating_light"><div class="reviews_rating_dark" style="width:{$module_data.review_stars_rating}%"></div></div>

		{/if}

		{if $module_data.products_short_description}<p>{$module_data.products_short_description}</p>{/if}

		{if $smarty.const._CUST_STATUS_SHOW_PRICE eq '1'}

		<p class="price">{$module_data.products_price.formated}</p>

		<p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

		{if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

		{/if}

		{if $module_data.products_weight > 0}<p class="taxandshippinginfo">{txt key=TEXT_PRODUCTS_WEIGHT}: {$module_data.products_weight} KG</p>{/if}

		{if $module_data.shipping_status}<p class="shippingtime">{txt key=TEXT_SHIPPING_STATUS} {$module_data.shipping_status}</p>{/if}


		{if $module_data.stock_image}

            <p class="stockimage">{img img=$module_data.stock_image.image type=t_img_stockrules alt=$module_data.stock_image.name}</p>

			<p class="stockimagetext">{$module_data.stock_image.name}</p>

		{/if}


		{if $module_data.allow_add_cart eq 'true'}

		{form type=form name=product action='dynamic' link_params=getParams method=post}

		{form type=hidden name=action value=add_product}

		{form type=hidden name=product value=$module_data.products_id}

		<div class="addtobasketlisting">

		<table border="0" cellspacing="0" cellpadding="2">

  			<tr>

    		<td style="width:100%">{form type=text name=qty value=1 style='width:50px;'}</td>

    		<td>{button text=$smarty.const.BUTTON_ADD_CART file='button_in_cart.gif' type='form' btn_template='tpl_button_2.gif' space_left='25'}</td>

  			</tr>

		</table>

		</div>

		{form type=formend}

		{/if}


	</td>

  </tr>

</table>

<div class="hrproductpreview"></div>

</td>

{php}

   if( $i++ == 2 ) {

      echo "</tr>\n";

      $i = 1;

   }

   {/php}  

{/foreach}

</table>


<div id="NAVIGATION">

	<div class="COUNT">{$NAVIGATION_COUNT}</div>

	<div class="PAGES">{$NAVIGATION_PAGES}</div>

</div>{/if}

{$error_listing}


Gruß

Heike

Link to comment
Share on other sites


{$categories}

{if $product_listing}

{if $heading_text}<h1>{$heading_text}</h1>{/if}

{if $PRODUCTS_DROPDOWN}{$PRODUCTS_DROPDOWN}{/if}


{if $sort_dropdown.options}

<div class="products_sort">

{form type=form name=sort_dropdown action='dynamic' method=get}

{form type=hidden name=page value='categorie'}

{form type=hidden name=cat value=$current_category_id}

{form type=select name=sorting value=$sort_dropdown.options default='' onchange='this.form.submit();'}

{form type=formend}

</div>

{/if}


{if $MANUFACTURER_DROPDOWN}

<div class="products_sort">

{if $MANUFACTURER_DROPDOWN}{$MANUFACTURER_DROPDOWN}{/if}

</div>

{/if}


{if $manufacturer}

{$manufacturer.MANUFACTURER.manufacturers_description}

{/if}


<div class="hrproductpreview"></div>

<table>

{php}

$k = 2;

$i = 1;

{/php} 

{foreach name=aussen item=module_data from=$product_listing}

  {php}

  if( $k++ == 2 ) {

      echo "<tr>\n";

      $k = 1;

   }

  {/php}

  <td>  

<table class="productPreview" width="100%" border="0" cellspacing="0" cellpadding="0">

  <tr>

    {if $module_data.products_image!=''}<td class="productPreviewImage"><a href="{$module_data.products_link}">{img img=$module_data.products_image type=m_info class=productImageBorder alt=$module_data.products_name}</a></td>{/if}

    <td class="productPreviewContent">

		<h2><a href="{$module_data.products_link}">{$module_data.products_name}</a></h2>

		{if $module_data.date_available!=''}

		<ul class="info_info">

			<li class="infoInfo">{txt key=TEXT_PRODUCT_AVAILABLE} {$module_data.date_available|date_format:"%A, %B %e, %Y"}</li>

		</ul>

		{/if}

		{if $module_data.review_stars_rating}

			<div class="reviews_rating_light"><div class="reviews_rating_dark" style="width:{$module_data.review_stars_rating}%"></div></div>

		{/if}

		{if $module_data.products_short_description}<p>{$module_data.products_short_description}</p>{/if}

		{if $smarty.const._CUST_STATUS_SHOW_PRICE eq '1'}

		<p class="price">{$module_data.products_price.formated}</p>

		<p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

		{if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

		{/if}

		{if $module_data.products_weight > 0}<p class="taxandshippinginfo">{txt key=TEXT_PRODUCTS_WEIGHT}: {$module_data.products_weight} KG</p>{/if}

		{if $module_data.shipping_status}<p class="shippingtime">{txt key=TEXT_SHIPPING_STATUS} {$module_data.shipping_status}</p>{/if}


		{if $module_data.stock_image}

            <p class="stockimage">{img img=$module_data.stock_image.image type=t_img_stockrules alt=$module_data.stock_image.name}</p>

			<p class="stockimagetext">{$module_data.stock_image.name}</p>

		{/if}


		{if $module_data.allow_add_cart eq 'true'}

		{form type=form name=product action='dynamic' link_params=getParams method=post}

		{form type=hidden name=action value=add_product}

		{form type=hidden name=product value=$module_data.products_id}

		<div class="addtobasketlisting">

		<table border="0" cellspacing="0" cellpadding="2">

  			<tr>

    		<td style="width:100%">{form type=text name=qty value=1 style='width:50px;'}</td>

    		<td>{button text=$smarty.const.BUTTON_ADD_CART file='button_in_cart.gif' type='form' btn_template='tpl_button_2.gif' space_left='25'}</td>

  			</tr>

		</table>

		</div>

		{form type=formend}

		{/if}


	</td>

  </tr>

</table>

<div class="hrproductpreview"></div>

</td>

{php}

   if( $i++ == 2 ) {

      echo "</tr>\n";

      $i = 1;

   }

   {/php}  

{/foreach}

</table>


<div id="NAVIGATION">

	<div class="COUNT">{$NAVIGATION_COUNT}</div>

	<div class="PAGES">{$NAVIGATION_PAGES}</div>

</div>{/if}

{$error_listing}

Schreib vor dem <table> tag mal uschi oder so und guck ob es angezeigt wird. Hab den code auch noch nen wenig geändert. sollte so eigentlich klappen.

Welche Datei haste verändert?

Link to comment
Share on other sites

Hallo,

also, ich habe die product_listing_v1.html geändert und als product_listing_v2.html gespeichert, diese dann als Template auch ausgewählt. Aber auch Deine Version hat absolut keinen Effekt. Hab auch schon Text dort reingeschrieben, an den verschiedensten Stellen...

Hab extra nochmal geschaut, ob ich auch nicht irgend eine falsches Verzeichnis nutze. Es ist 100% die korrekte Datei.

Kann es sein, dass das Template irgendwo gecached wird?

Gruß

Heike

Link to comment
Share on other sites

  • 2 months later...

Das geht. Dazu musst du nur die dafür zuständige html datei umschreiben.

bei product_listing wärs z.B. so:

Kurz vor der Ausgabe der Produkte machst das:


<table>
{php}
$k = 3;
$i = 1;
{/php}
[/PHP]

Dann, direkt nachdem Anfang der Ausgabe des Produktes, also direkt nach dem foreach machst du das

[PHP]
{php}
if( $k++ == 2 ) {
echo "<tr>\n";
$k = 1;
}
{/php}
<td>
[/PHP]

am Ende des foreach machst du das:

[PHP]
</td>
{php}
if( $i++ == 2 ) {
echo "</tr>\n";
$i = 1;
}
{/php}
[/PHP]

Und nach der {/foreach} ausgabe schließt du die tabelle wieder

[HTML]</table> [/HTML]

Fertig ;)

Wenn du dich nen bisl mit html bzw. php auskennst sollte das kein prob sein.

PS: hast ne pn von mir :P^^

Superklasse!! Vielen Dank!

Funktioniert einwandfrei.

Gruß Sonja

Link to comment
Share on other sites

  • 3 months later...

Superklasse!! Vielen Dank!

Funktioniert einwandfrei.

Gruß Sonja

Das geht. Dazu musst du nur die dafür zuständige html datei umschreiben.

bei product_listing wärs z.B. so:

Kurz vor der Ausgabe der Produkte machst das:


<table>
{php}
$k = 3;
$i = 1;
{/php}
[/PHP]

Dann, direkt nachdem Anfang der Ausgabe des Produktes, also direkt nach dem foreach machst du das

[PHP]
{php}
if( $k++ == 2 ) {
echo "<tr>\n";
$k = 1;
}
{/php}
<td>
[/PHP]

am Ende des foreach machst du das:

[PHP]
</td>
{php}
if( $i++ == 2 ) {
echo "</tr>\n";
$i = 1;
}
{/php}
[/PHP]

Und nach der {/foreach} ausgabe schließt du die tabelle wieder

[HTML]</table> [/HTML]

Fertig ;)

Wenn du dich nen bisl mit html bzw. php auskennst sollte das kein prob sein.

PS: hast ne pn von mir :P^^

ENDLICH !!! Nun hat es auch bei mir geklappt.. bzw. deine Anleitung.

[b]Aber es gibt ein weiteres Problem [/b]:(

Wie behebe ich das am besten ?^^

post-90366-14337914971651_thumb.jpg

Link to comment
Share on other sites

  • 2 months later...

Hallo,

irgendwie komme ich mit der beschreibung nicht ganz klar.

Kann mir jemand kokret sagen, an welcher stelle ich die Anweisungen bzw. Komandos einfügen muß?

Es heißt : "Kurz vor der Ausgabe der Produkte machst das".. ist in meinen Augen doch sehr unpräzise. Sorry hörst ich doof an, aber ich bin ein blutiger Anfänger und habe alle möglichen "logischen " stellen ausprobiert und es kamm immer ein schwarzer Bildschirm...

Wäre nett wenn mir hier einer eine genaue Antwort geben könnte.

Grüße.

lupini

hier mein product listing html - das ist nach bestem wissen und beschreibung im forum passiert:

{config_load file="$language/lang_$language.conf" section="index"}

{if $CATEGORIES_NAME}<h2>{$CATEGORIES_NAME}</h2>{/if}

<table>

{php}

$k = 3;

$i = 1;

{/php}

{if $CATEGORIES_HEADING_TITLE || $CATEGORIES_DESCRIPTION || $CATEGORIES_IMAGE || $MANUFACTURER_DROPDOWN}

<div id="frameListHead" class="floatbox" >

{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME}" class="imgLeft" />{/if}

{$CATEGORIES_HEADING_TITLE}<br />

{if $CATEGORIES_DESCRIPTION}{$CATEGORIES_DESCRIPTION}{/if}<br />

{if $MANUFACTURER_DROPDOWN}{$MANUFACTURER_DROPDOWN}{/if}<br />

</div>

{/if}

<br />

{php}

if( $k++ == 2 ) {

echo "<tr>\n";

$k = 1;

}

{/php}

<td>

{foreach name=aussen item=module_data from=$module_content}

{snippet file=product_listing_item.html item=$module_data}

</td>

{php}

if( $i++ == 2 ) {

echo "</tr>\n";

$i = 1;

}

{/php}

{/foreach}

</table>

{$NAVIGATION}

Link to comment
Share on other sites

  • 3 months later...

Hallo,

hier ist die Standard product_listing.html des xt_defaiut Templates 2 spaltig. Das muss man natürlich noch sauber formatieren, oder noch besser, die Tabellen raus und z.B. als LIste ausgeben.

{$categories}

{if $product_listing}

{if $heading_text}<h1>{$heading_text}</h1>{/if}

{if $PRODUCTS_DROPDOWN}{$PRODUCTS_DROPDOWN}{/if}

{if $sort_dropdown.options}

<div class="products_sort">

{form type=form name=sort_dropdown action='dynamic' method=get}

{form type=hidden name=page value='categorie'}

{form type=hidden name=cat value=$current_category_id}

{form type=select name=sorting value=$sort_dropdown.options default='' onchange='this.form.submit();'}

{form type=formend}

</div>

{/if}

{if $MANUFACTURER_DROPDOWN}

<div class="products_sort">

{if $MANUFACTURER_DROPDOWN}{$MANUFACTURER_DROPDOWN}{/if}

</div>

{/if}

{if $manufacturer}

{$manufacturer.MANUFACTURER.manufacturers_description}

{/if}


<table border="0" cellspacing="0" cellpadding="0">

<tr>

{foreach name=aussen item=module_data from=$product_listing}

  {php} $col++; 

  {/php}

  <td>  

<table class="productPreview" width="50%" border="0" cellspacing="0" cellpadding="0">

  <tr>


    <td class="productPreviewContent"> {if $module_data.products_image!=''}<a href="{$module_data.products_link}">{img img=$module_data.products_image type=m_thumb class=productImageBorder alt=$module_data.products_name}</a>{/if}

  <h2><a href="{$module_data.products_link}">{$module_data.products_name}</a></h2>

  {if $module_data.date_available!=''}

  <ul class="info_info">

   <li class="infoInfo">{txt key=TEXT_PRODUCT_AVAILABLE} {$module_data.date_available|date_format:"%A, %B %e, %Y"}</li>

  </ul>

  {/if}

  {if $module_data.review_stars_rating}

   <div class="reviews_rating_light"><div class="reviews_rating_dark" style="width:{$module_data.review_stars_rating}%"></div></div>

  {/if}

  {if $module_data.products_short_description}<p>{$module_data.products_short_description}</p>{/if}

  {if $smarty.const._CUST_STATUS_SHOW_PRICE eq '1'}

  <p class="price">{$module_data.products_price.formated}</p>

  <p class="taxandshippinginfo">{$module_data.products_tax_info.tax_desc}{if $module_data.products_shipping_link}<a href="{$module_data.products_shipping_link}" target="_blank" rel="nofollow">{txt key=TEXT_EXCL_SHIPPING}</a>{/if}</p>

  {if $module_data.base_price}<p class="vpe">{$module_data.base_price.price} {txt key=TEXT_SHIPPING_BASE_PER} {$module_data.base_price.vpe.name}</p>{/if}

  {/if}

  {if $module_data.products_weight > 0}<p class="taxandshippinginfo">{txt key=TEXT_PRODUCTS_WEIGHT}: {$module_data.products_weight} KG</p>{/if}

  {if $module_data.shipping_status}<p class="shippingtime">{txt key=TEXT_SHIPPING_STATUS} {$module_data.shipping_status}</p>{/if}

  {if $module_data.stock_image}

            <p class="stockimage">{img img=$module_data.stock_image.image type=t_img_stockrules alt=$module_data.stock_image.name}</p>

   <p class="stockimagetext">{$module_data.stock_image.name}</p>

  {/if}

  {if $module_data.allow_add_cart eq 'true'}

  {form type=form name=product action='dynamic' link_params=getParams method=post}

  {form type=hidden name=action value=add_product}

  {form type=hidden name=product value=$module_data.products_id}

  <div class="addtobasketlisting">

  <table border="0" cellspacing="0" cellpadding="2">

     <tr>

      <td style="width:100%">{form type=text name=qty value=1 style='width:50px;'}</td>

      <td>{button text=$smarty.const.BUTTON_ADD_CART file='button_in_cart.gif' type='form' btn_template='tpl_button_2.gif' space_left='25'}</td>

     </tr>

  </table>

  </div>

  {form type=formend}

  {/if}

 </td>

  </tr>

</table>

</td> 

  {php} 

  if ($col>=2) {

  $col=0;

  echo '</tr><tr>';

  }

  {/php}

{/foreach}</tr>

</table>

<div id="NAVIGATION">

 <div class="COUNT">{$NAVIGATION_COUNT}</div>

 <div class="PAGES">{$NAVIGATION_PAGES}</div>

</div>{/if}

{$error_listing}

es sollte sich trotzdem jeder im klaren sein wenn er Anpassungen am Template macht MUSS man fundierte HTML/CSS Kenntnisse haben, sonst kommt (sorry sione74) so ein verschachtelter HTML Murks mit lauter inline Anweisngen dabei heraus.

Link to comment
Share on other sites

naja bin ja auch kein Coder, aber habe hier mal eine product_listing_v1.html datei die ihr einfach ersetzen könnt und vola ihr habt drei kollonen produkt Liste bei Kats... ein kleiner fehler hats, das topbanner ist nicht mehr zentriert :P

{config_load file="$language/lang_$language.conf" section="index"}

<table width="100%" border="0" align="center" cellspacing="0" cellpadding="0">

<tr valign="top">

<td class="contentsTopics">{$CATEGORIES_NAME}</td>

<td align="right"></td>

</tr>

<tr valign="top">

<td class="contentsTopics">{$CATEGORIES_HEADING_TITLE}</td>

<td align="right"></td>

</tr>

</table>

{if $CATEGORIES_DESCRIPTION}

{$CATEGORIES_DESCRIPTION}{/if}<br />{if $CATEGORIES_IMAGE}<p align="center"><img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME}" /></p>

<br />

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td style="border-bottom: 1px solid; border-color: #000000;"> </td>

</tr>

</table>

{/if}

{if $MANUFACTURER_DROPDOWN}<br />

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td class="main" align="right"><table border="0" cellspacing="0" cellpadding="0">

<tr>

<td class="main" align="right">{#text_show#} </td>

<td class="main" align="right">{$MANUFACTURER_DROPDOWN}</td>

</tr>

</table> </td>

</tr>

</table>

<br />

{/if}

<table width="100%" border="0" align="center" cellspacing="0" cellpadding="0">

<tr>

<td align="center">

{foreach name=aussen item=module_data from=$module_content}

<div style="float:left; width:263px; padding-top:5px; padding-left:2px; background-color:#FFFFFF;">

<table width="260" style="border:1px solid #DDDDDD;" bgcolor="#000000" align="center" border="0" cellpadding="0" cellspacing="2">

<tr valign="middle">

<td valign="top" height="360px" style="border-bottom:5px solid #000000;">

<table width="100%" border="0" cellpadding="0" cellspacing="0">

<tr>

<td align="center" height="60" style="color:#333" bgcolor="#f4f4f4"><strong>{$module_data.PRODUCTS_NAME}</strong></td>

</tr>

<tr>

<td height="120" align="center" valign="middle" bgcolor="#FFFFFF" style="padding-right:0px;">

{if $module_data.PRODUCTS_IMAGE!=''}

<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" alt="{$module_data.PRODUCTS_NAME}" /></a>

{else}

<strong>Kein Bild vorhanden!</strong>

{/if}

</td>

</tr>

<tr>

<td height="70" valign="top" align="center" bgcolor="#FFFFFF" style="padding:5px">

{if $module_data.PRODUCTS_SHORT_DESCRIPTION!=''}

{$module_data.PRODUCTS_SHORT_DESCRIPTION}

{else}

{/if}

</td>

</tr>

<tr>

<td class="productPreviewContent">

<!-- <h2><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></h2> -->

<p class="price">{$module_data.PRODUCTS_PRICE}</p>

<p class="taxandshippinginfo">({$module_data.PRODUCTS_TAX_INFO}{$module_data.PRODUCTS_SHIPPING_LINK})</p>

{if $module_data.PRODUCTS_VPE}<p class="vpe">{$module_data.PRODUCTS_VPE}</p>{/if}

{if $module_data.PRODUCTS_SHIPPING_NAME}

<p class="shippingtime">{#text_shippingtime#}

{if $module_data.PRODUCTS_SHIPPING_IMAGE}

<img src="{$module_data.PRODUCTS_SHIPPING_IMAGE}" alt="{$module_data.PRODUCTS_SHIPPING_NAME}" />

{/if}

{$module_data.PRODUCTS_SHIPPING_NAME}

{/if}

{if $module_data.PRODUCTS_STOCKS_TRAFFIC_IMAGE}

<p class="stockimage"><img src="{$module_data.PRODUCTS_STOCKS_TRAFFIC_IMAGE}" alt="{$module_data.PRODUCTS_STOCKS_TRAFFIC_NAME}" /></p>

<p class="stockimagetext">{$module_data.PRODUCTS_STOCKS_TRAFFIC_NAME}</p>

{/if}

</td>

</tr>

<tr>

<td height="40" valign="middle" align="center" bgcolor="#f4f4f4">

<p><!-- {$module_data.PRODUCTS_BUTTON_BUY_NOW} --><a href="{$module_data.PRODUCTS_LINK}"><img src="{$tpl_path}buttons/{$language}/button_product_more.gif" alt="Details" border="0" /></a></p>

</td>

</tr>

</table>

</td>

</tr>

</table>

</div>

{/foreach}

<td></td>

</table>

</td>

</tr>

</table>

<br />

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td>{$NAVIGATION}</td>

</tr>

</table>

Link to comment
Share on other sites

  • 6 months later...

Archived

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

×
  • Create New...