Jump to content
xt:Commerce Community Forum

Neue Artikeln


Recommended Posts

Würde gerne in meinem Shop den text ändern " neue Artikeln" aber nur in der Mitte nicht in der Box rechts, oder den text in der Mitte ganz weg und in der Mitte die Artikeln so einstellen nebeneinander.

mein Shop

http://www.briefmarken-westermayr.at/

und so hätte ich es gerne in der Mitte nur den text neue Artikeln weg oder geändert

http://www.dogs4friends.de/

ich hoffe ihr könnt mir rasch helfen, damit ich weiter basteln kann an meinem Shop

DANKE

happy

Link to comment
Share on other sites

Hallo,

öffne mal dein template "product_listing.html" oder die "new_product..." Seiten und suche nach folgender Stelle:

Code:

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

und ersetze die Zeile mit

Code:

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

{php}

$col++;

{/php}

Ganz am Ende der Seite suche nach:

Code:

{/foreach}

Hier wird der Tag wieder geschlosssen, alles ersetzen mit:

Code:

{php}

if ($col>=2) {

$col=0;

echo '</tr><tr>';

}

{/php}

{/foreach

Die Zahl hinter "col>=" bestimmt die Anzahl der Spalten.

Link to comment
Share on other sites

habe ich alles gefunden und gemacht hat sich nichts geändert

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

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

{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 />

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

{php}

$col++;

{/php}

<h1 class="productListing1ColHead"><a href="{$module_data.PRODUCTS_LINK}">{$module_data.PRODUCTS_NAME}</a></h1>

<div class="productListing1ColBody">

<div class="floatbox">

<div class="productListing1ColBodyImg">

{if $module_data.PRODUCTS_IMAGE}

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

{else}{* if no picture available *}

 

{/if}

</div>

<div class="productListing1ColBodyTxt">

{if $module_data.PRODUCTS_SHORT_DESCRIPTION!=''}<div class="productListing1ColDesc">{$module_data.PRODUCTS_SHORT_DESCRIPTION}</div>{/if}

<div class="productListing1ColPriceInfo">{$module_data.PRODUCTS_PRICE}{if $module_data.PRODUCTS_VPE}<br />{$module_data.PRODUCTS_VPE}{/if}<br />

<span class="productListing1ColTaxInfo">{$module_data.PRODUCTS_TAX_INFO}{$module_data.PRODUCTS_SHIPPING_LINK}</span></div>

{if $module_data.PRODUCTS_SHIPPING_NAME}

<div class="productListing1ColShiptime">

{#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}

</div>

{/if}

<div class="productListing1ColButtons">

<span class="productListing1ColViewButton"><a href="{$module_data.PRODUCTS_LINK}"><img src="{$tpl_path}buttons/{$language}/small_view.gif" alt="{$module_data.PRODUCTS_NAME}" /></a></span>

<span class="productListing1ColBuyButton">{$module_data.PRODUCTS_BUTTON_BUY_NOW}</span>

</div>

</div></div>

</div>

{php}

if ($col>=2) {

$col=0;

echo '</tr><tr>';

}

{/php}

{/foreach

{/foreach}

{$NAVIGATION}

Link to comment
Share on other sites

Archived

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

×
  • Create New...