{% sw_extends '@Storefront/storefront/component/product/km-listing.html.twig' %}
{% block element_product_listing_row %}
<div class="wishlist-container">
{% if searchResult.total > 0 %}
{% block element_product_listing_col %}
{% for product in searchResult %}
{% set listingColumns = '' %}
{% set km_add_pp_products = km_add_pp_products(product, context, app.request.cookies.get('pp_id'), boxLayout, displayMode, listingColumns) %}
{% if km_add_pp_products %}
{{ km_add_pp_products | raw }}
{% else %}
{% sw_include '@KMShop2022/storefront/component/product/km-element-product-listing-box.html.twig' %}
{% endif%}
{# { % sw_include '@KMShop2022/storefront/component/product/km-element-product-listing-box.html.twig' % } #}
{% endfor %}
{% endblock %}
{% else %}
{% block element_product_listing_col_empty %}
<div class="cms-listing-col col-12">
{% block element_product_listing_col_empty_alert %}
{% sw_include '@Storefront/storefront/utilities/alert.html.twig' with {
type: 'info',
content: 'listing.emptyResultMessage'|trans|sw_sanitize
} %}
{% endblock %}
</div>
{% endblock %}
{% endif %}
</div>
{% endblock %}