kochmods Posted November 2, 2011 Report Share Posted November 2, 2011 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: Link to comment Share on other sites More sharing options...
dukie6666 Posted November 3, 2011 Report Share Posted November 3, 2011 dafür ist die Datei box_xt_special_products.html zuständig. Aber Achtung die liegt nicht im Templateordner sondern im Plugin Ordner. Link to comment Share on other sites More sharing options...
Rietsch Posted January 16, 2012 Report Share Posted January 16, 2012 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 More sharing options...
flavor Posted August 11, 2012 Report Share Posted August 11, 2012 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 More sharing options...
objekt Posted August 12, 2012 Report Share Posted August 12, 2012 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 More sharing options...
flavor Posted August 13, 2012 Report Share Posted August 13, 2012 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 More sharing options...
ackergiganten Posted September 18, 2012 Report Share Posted September 18, 2012 wo genau kann ich den einstellen, dass ich generell nur ein Angebot angezeigt haben möchte und nicht wie in meinem Fall jetzt 4??? Link to comment Share on other sites More sharing options...
Sentor77 Posted September 19, 2012 Report Share Posted September 19, 2012 Moin, In den Plugin-Einstellungen unter installierte Plugins. LG Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.