Jump to content
xt:Commerce Community Forum

xt_mobile Master/Slave ohne Dropdown


Recommended Posts

Ich mal wieder :(

nachdem nun alle Icons sichtbar gemacht worden sind siehe Thread hier stolpere ich zum nächsten Problem.

Ich habe nur wenige Master, aber sehr viele Slaves, die in der xt_grid bislang gut durch die Dropdown-Felder gefiltert werden.

In der xt_mobile sind diese jedoch nicht zu sehen (oder ich habe sie nicht erkannt).

die product.html hat ja zum Schluss die Einträge


{if $products_master_flag == 1}

        {hook key=product_info_tpl_productlist}

{/if}


.....


{hook key=product_info_tpl}

Daher wäre ich nun der Meinung, dass die Auswahl (wie auch immer grafisch gelöst) da sein müssen.

Bitte um Erleuchtung oder Abnahme der Tomaten.

Grüße

Daniel

Link to comment
Share on other sites

  • 5 months later...

Hab es selber gefunden. Scheinbar wurde die Aktualisierung des eigenen mobile Template von xtcommerce nicht durchgeführt . :mad:

In

/templates/IHR-TEMPLATE/xtCore/pages/products/products.html

IHR-Template also xt_mobile

Suchen Sie:

{hook key=product_info_tpl_cart}

Fügen Sie dahinter ein:


{if $products_master_flag == 1 OR $products_master_model != ''}
<div class="box">
{hook key=product_info_tpl_options}
</div><!-- .box -->
{/if}
[/PHP]

Suchen Sie:

{hook key=product_info_tpl}

Fügen Sie dahinter ein:

[PHP]
{if $products_master_flag == 1}
<div id="productlist" class="ptabs">
{hook key=product_info_tpl_productlist}
</div><!-- #productlist -->
{/if}
[/PHP]

Link to comment
Share on other sites

Archived

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

×
  • Create New...