2 Artikel nebeneinander in der Mobilen Ansicht anzeigen

Das geht in den Einstellungen des Sliders in der Erlebniswelt. Hier musst du die Mindestgröße runterschrauben, beispielsweise auf 150px.

Hier ist noch ne Option wie man 2 Artikel nebeneinader in den Listings anzeigen kann:

Ich hab’s noch etwas angepasst, so dass man auch auf den Tablet schon mehr hat:

{% sw_extends '@Storefront/storefront/component/product/listing.html.twig' %}

{% block element_product_listing_col %}
    {% for product in searchResult %}
        {# col-6 rein  #}
        <div class="cms-listing-col col-6 col-sm-6 col-md-4">
            {% block element_product_listing_box %}
                {% sw_include '@Storefront/storefront/component/product/card/box.html.twig' with {
                    'layout': boxLayout,
                    'displayMode': displayMode
                } %}
            {% endblock %}
        </div>
    {% endfor %}
{% endblock %}

Good luck - have fun.