Einkaufswelten Link "weitere Artikel d. Kategorie" entfernen

Ich hab mir das auch gerade angesehen und ne Lösung die Scheinbar Klappt. ( Für Shopware 5.2.7 - Bitte gern Feedback geben )

/themes/Frontend/Bare/frontend/listing/listing.tpl

Und hier bei Zeile 62 - 79 alles Raus nehmen.

>>>Beispiel-Original:

        {block name=„frontend_listing_listing_container“}
           

                {block name=„frontend_listing_listing_content“}
                   

                        data-ajax-wishlist=„true“
                        data-compare-ajax=„true“
                        {if $theme.infiniteScrolling}
                        data-infinite-scrolling=„true“
                        data-loadPreviousSnippet="{s name=„ListingActionsLoadPrevious“}{/s}"
                        data-loadMoreSnippet="{s name=„ListingActionsLoadMore“}{/s}"
                        data-categoryId="{$sCategoryContent.id}"
                        data-pages="{$pages}"
                        data-threshold="{$theme.infiniteThreshold}"{/if}>

                        {* Actual listing *}
                        {block name=„frontend_listing_list_inline“}
                            {foreach $sArticles as $sArticle}
                                {include file=„frontend/listing/box_article.tpl“}
                            {/foreach}
                        {/block}
                   

                {/block}
           
        {/block}

 

 

>>>Beispiel-Danach:

        {block name=„frontend_listing_listing_container“}
           

                {block name=„frontend_listing_listing_content“}

                {/block}
           

        {/block}

 

 

Ich hoffe ich konnte Helfen.