Jump to content
xt:Commerce Community Forum

Unterschiedlicher Template aufbau von Startseite zu Unterseiten?


aminox

Recommended Posts

Hallo,

ich hoffe ich bin hier richitg.

Also ich habe folgendes Problem. Bei einer Veyton4-Installation möchte ich das Template anpassen, soweit so gut. Im Gegensatz zum xt_default Template, möchte ich nicht

Leftbar Content Rightbar

sondern

Content Leftbar Rightbar

haben. Dies funktioniert auf den Unterseiten auch soweit ganz gut. Nur auf der Startseite (Willkommensseite) werden die DIV-Boxen falsch zusammengesetzt.

So sollte es sein:


<div id="contentwrap" class="clearfix">
<div id="content"></div>
<div id="leftcol"></div>
<div id="rightcol"></div>
</div>
[/HTML]

Auf der Startseite wird es allderdings so zusammengebaut:

[HTML]
<div id="contentwrap" class="clearfix">
<div id="content">
<div id="leftcol"></div>
<div id="rightcol"></div>
</div>
</div>
[/HTML]

Aufbau der index.html

[HTML]
<div id="contentwrap" class="clearfix">
{if $show_index_boxes == 'true'}
<div id="content">
{else}
<div id="contentfull">
{/if}
{$content}
</div>

{if $show_index_boxes == 'true'}

<div id="leftcol">
{box name=xt_new_products type=user order_by='rand()'}
{box name=xt_new_products type=user order_by='rand()'}
{box name=xt_new_products type=user order_by='rand()'}
</div>

<div id="rightcol">
{box name=categories}
{box name=cart}
{box name=loginbox}
{content block_id=7 levels=nested}
{if $_content_7|count > 0}
<div class="boxWrapper">
<h2>{txt key=TEXT_INFO}</h2>
<ul class="categorymenu">
{foreach name=aussen item=box_data from=$_content_7}
<li class="level{$box_data.level}{if $box_data.active} active{/if}"><a href="{$box_data.link}">{$box_data.title}</a></li>
{/foreach}
</ul>
</div>
{/if}
{box name=manufacturers}
{box name=xt_bestseller_products type=user}
</div>
{/if}
</div>
[/HTML]

EDIT

Die Zeilen in der default.html waren dafür verantwortlich.

[HTML]
{page name=xt_startpage_products type=user order_by='p.products_sort' tpl_type='product_listing'}
{page name=xt_upcoming_products type=user order_by='p.date_available' tpl_type='product_listing'}
[/HTML]

Link to comment
Share on other sites

Archived

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

×
  • Create New...