Hi,
ich versuche Infinite Scrolling auf Herstellerseite aktiv zu schalten. Dies funktioniert allerdings nur teilweise. Die Artikel werden zwar nachgeladen, allerdings ist die Herstellerseite mit ProductBoxLayout=‘Image’ angepasst. So wird Page 1 im Image ProductBoxLayout und alle weiteren Pages im Standard ProduktBoxLayout dargestellt.
{extends file="parent:frontend/listing/manufacturer.tpl"}
{block name="frontend_listing_index_layout_variables"}
{* Count of available product pages *}
{if $criteria}
{$pages = ceil($sNumberArticles / $criteria->getLimit())}
{/if}
{* Controller url for the found products counter *}
{$countCtrlUrl = "{url module="widgets" controller="listing" action="listingCount" params=$ajaxCountUrlParams fullPath}"}
{* Layout for the product boxes *}
{$productBoxLayout = 'image'}
{if $sCategoryContent.productBoxLayout !== null && $sCategoryContent.productBoxLayout !== 'extend'}
{$productBoxLayout = $sCategoryContent.productBoxLayout}
{/if}
{/block}
Gibt es eine Möglichkeit, dass die nachgeladene Artikel ebenfalls im ProductBoxLayout = ‘Image’ angezeigt werden?