Guten Morgen,
ich versuche seit fast zwei Stunden, große Bilder in die product_listing.html einzufügen. D.h. ich will exakt die gleichen "Vorschaubilder" haben wie in der product_info_v1.html. Das gelingt mir schlichtweg nicht. Ich habe versucht, die Variable $PRODUCT_IMAGE in $PRODUCT_IMAGE_1 umzubenennen und einige unterschiedliche Code-Schnipsel aus der product_info_v1.html in den product_listing.html Syntax zu übernehmen. Ohne Erfolg. Aktuell sieht der Anfang meines Codes so aus:
Code:
{config_load file="$language/lang_$language.conf" section="index"}
<h1>{$CATEGORIES_NAME}</h1>
{if $CATEGORIES_DESCRIPTION}
<p>{$CATEGORIES_DESCRIPTION}</p>
<div class="hrproductpreview"></div>
{/if}
{if $MANUFACTURER_DROPDOWN}{$MANUFACTURER_DROPDOWN}{/if}
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
{foreach name=aussen item=module_data from=$module_content}
{php} $col++; {/php}
<td valign="top" style="border:1px solid #C9C9C9;" height="300">
<table class="productPreview" width="250" height="350" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="productPreviewContent" colspan="2">
<h2><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></h2>
</td>
</tr>
<tr>
<td colspan="2" align="center">
{if $module_data.PRODUCTS_IMAGE!=''}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}"
alt="{$module_data.PRODUCTS_NAME}" class="productImageBorder"></a>{/if}
</td>
</tr>
Wer kann mir hier weiterhelfen?
Danke, Michael