W przykładzie pokazano wyświetlanie produktów z listy Bestseller w ilości 4 sztuk.

view_type może przyjmować wartości - grid, list, short, swiper, swiper_short, table.

{* UTILS *}
{include "{$wa->site->themePath(waRequest::getTheme())}u-utils.html"}

{* GET THEMESETTINGS *}
{$theme_id = waRequest::getTheme()}
{$theme_settings = $wa->themesettings->getThemeSettings($theme_id, "site", true)}

{$products = $wa->shop->productSet("bestseller", 4, null, ['fields' => '*,sku_filtered'])}
{$products_props = [
    "title" => "[`Products`]",
    "view_type" => "swiper"
]}

{call include_template template="products" app="shop" products=$products props=$products_props}