{assign var="max" value=$section.max|default:10}> <{assign var="autofill" value=$section.autofill|default:false}> <{assign var="products" value=""}> <{if $section.type|strpos:"clerk" !== false}> <{assign var="clerk_endpoint" value=$section.type|strstr:_|substr:1}> <{else}> <{if $section.type == 'popular'}> <{assign var="products" value=$webshop->getPopularProducts()}> <{elseif $section.type == 'newest'}> <{assign var="products" value=$webshop->getOnlineProducts()}> <{elseif $section.type == 'sold'}> <{assign var="products" value=$webshop->getPopularProducts()}> <{elseif $section.type == 'category'}> <{assign var="category" value=$webshop->getCategoryByTag($section.selector)}> <{assign var="products" value=$category->getOnlineProducts()}> <{elseif $section.type == 'ids'}> <{assign var="product_ids" value=$section.selector}> <{elseif $section.type == 'landing_page'}> <{assign var="landing_page_products" value=$webshop->getLandingPageByTag($section.selector)}> <{if $landing_page_products}> <{assign var="products" value=$landing_page_products->getProducts()}> <{/if}> <{/if}> <{/if}>