Jump to content
xt:Commerce Community Forum

Angebote / special products nicht mittig in der Box!


kochmods

Recommended Posts

Hallo Leute,

nutze Veyton 4.0.14 CE Version und mein Problem ist, dass die Angebote (special products) nicht mittig in der Box erscheinen, nur der erste Eintrag ist mittig.

Woran liegt das? Wie kann ich dies beheben? Die Texte (Artikelnamen, Preis und der aktuelle reduzierte Preis) sind mittig, nur die Bilder nicht... Der Preis wird über einen Prozentwert gesenkt.

Bild:

518-Unbenannt.png

Link to comment
Share on other sites

  • 2 months later...

hatte auch das Problem und habe die Datei so abgeändert:

-------------------------------

{if $_show_more_link == true}

<h2 class="boxheader"><a href="{link page='xt_special_products' conn=SSL}">{txt key=TEXT_HEADING_SPECIAL_PRODUCTS}</a></h2>

{else}

<h2 class="boxheader">{txt key=TEXT_HEADING_SPECIAL_PRODUCTS}</h2>

{/if}

<div class="boxbody">

{php}$count=0;{/php}

{foreach name=aussen item=special_products_data from=$_special_products}

{php} if ($count==0) { {/php}

{if $special_products_data.products_image!=''}<p class="center"><a href="{$special_products_data.products_link}">{img img=$special_products_data.products_image type=m_thumb class=productImageBorder alt=$special_products_data.products_name}</a></p>{/if}

<p class="center"><a href="{$special_products_data.products_link}"><strong>{$special_products_data.products_name}</strong></a><br />{$special_products_data.products_price.formated}</p>

{php} $count++; } else { {/php}

<div class="hr"></div>

<div>

<div >

{if $special_products_data.products_image!=''}<p class="center"><a href="{$special_products_data.products_link}">{img img=$special_products_data.products_image type=m_thumb class=productImageBorder alt=$special_products_data.products_name}</a></p>{/if}

</div>

<div >

<p class="center"><a href="{$special_products_data.products_link}"><strong>{$special_products_data.products_name}</strong></a><br />{$special_products_data.products_price.formated}</p>

</div>

</div>

<div style="clear:both"></div>

{php}}{/php}

{/foreach}

</div>

-------------------------------

Link to comment
Share on other sites

  • 6 months later...

habe selbes Problem mit bestseller_products in 4.0.14. Habe es über ".boxbody p.center" in der css zentriert; es wird nur der Erste Artikel zentriert. Habe versucht deine Idee umzusetzen, aber ohne Erfolg. Aber wie Dukie6666 schon sagt, was ist nach dem nächsten Update?

Hier mal das Plugin html, vielleicht sieht ja einer den Fehler.

{if $_show_more_link == true}
<h2 class="boxheader"><a href="{link page='bestseller_products' conn=SSL}">{txt key=TEXT_HEADING_BESTSELLER_PRODUCTS}</a></h2>
{else}
<h2 class="boxheader">{txt key=TEXT_HEADING_BESTSELLER_PRODUCTS}</h2>
{/if}
<div class="boxbody">
{php}$count=0;{/php}
{foreach name=aussen item=bestseller_products_data from=$_bestseller_products}
{php} if ($count==0) { {/php}
{if $bestseller_products_data.products_image!=''}<p class="center"><a href="{$bestseller_products_data.products_link}">{img img=$bestseller_products_data.products_image type=m_thumb class=productImageBorder alt=$bestseller_products_data.products_name}</a></p>{/if}
<p class="center"><a href="{$bestseller_products_data.products_link}"><strong>{$bestseller_products_data.products_name}</strong></a><br />{$bestseller_products_data.products_price.formated}</p>
<div class="hr"></div>
{php} $count++; } else { {/php}
<div>
<div class="box_small_img float_left">
{if $bestseller_products_data.products_image!=''}<a href="{$bestseller_products_data.products_link}">{img img=$bestseller_products_data.products_image type=m_thumb class=productImageBorder width=50 alt=$bestseller_products_data.products_name}</a>{/if}
</div>
<div class="float_left">
<a href="{$bestseller_products_data.products_link}"><strong>{$bestseller_products_data.products_name}</strong></a><br />{$bestseller_products_data.products_price.formated}
</div>
</div>
<div style="clear:both"></div>
<div class="hr"></div>
{php}}{/php}
{/foreach}
</div>[/PHP]

gg

Link to comment
Share on other sites

die ist ne count-abfrage drin. Wenn alles mittig sein soll muss dieses rein... Beispiel beim new_products:

{if $_show_more_link == true}

<h2 class="boxheader">

{if $smarty.const.ACTIVATE_XT_NEW_PRODUCTS_PAGE eq 'true'}<a href="{link page='xt_new_products' conn=SSL}">{txt key=TEXT_HEADING_NEW_PRODUCTS}</a>{else}

{txt key=TEXT_HEADING_NEW_PRODUCTS}

{/if}

</h2>

{else}

<h2 class="boxheader">{txt key=TEXT_HEADING_NEW_PRODUCTS}</h2>

{/if}

<div class="boxbody">

{foreach name=aussen item=new_products_data from=$_new_products}

{if $new_products_data.products_image!=''}<p class="center"><a href="{$new_products_data.products_link}">{img img=$new_products_data.products_image type=m_thumb class=productImageBorder alt=$new_products_data.products_name}</a></p>{/if}

<p class="center"><a href="{$new_products_data.products_link}"><strong>{$new_products_data.products_name}</strong></a><br />{$new_products_data.products_price.formated}</p>

{/foreach}

</div>

das "count" sollte also weg...

Link to comment
Share on other sites

Hallo objekt,

super, hat funktioniert danke! Um es hier nochmal für Nachfolgende abzuschließen.

So sollte die "box_xt_bestseller_products.html" für die zentrierte Ansicht bei xtc4.0.14/15 aussehen.

{if $curr_url != 'bestseller_products'}
{if $_show_more_link == true}
<h2 class="boxheader"><a href="{link page='bestseller_products' conn=SSL}">{txt key=TEXT_HEADING_BESTSELLER_PRODUCTS}</a></h2>
{else}
<h2 class="boxheader">{txt key=TEXT_HEADING_BESTSELLER_PRODUCTS}</h2>
{/if}
<div class="boxbody">
{foreach name=aussen item=bestseller_products_data from=$_bestseller_products}
{if $bestseller_products_data.products_image!=''}<p class="center"><a href="{$bestseller_products_data.products_link}">{img img=$bestseller_products_data.products_image type=m_thumb class=productImageBorder alt=$bestseller_products_data.products_name}</a></p>{/if}
<p class="center"><a href="{$bestseller_products_data.products_link}"><strong>{$bestseller_products_data.products_name}</strong></a><br />{$bestseller_products_data.products_price.formated}</p>
{/foreach}
</div>
{/if}

[/PHP]

Achtung, nach einem xtc Update wird die Datei überschireben!

gg

Link to comment
Share on other sites

  • 1 month later...

Archived

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

×
  • Create New...