Shopware: Einkaufswelten und Banner zur selben Zeit

If you try to place a banner in Shopware and also want to place shopping worlds on the same page, you will quickly notice that the banner disappears when the shopping world is activated. To display both at the same time, a small change to the theme is necessary.

 

 

 

As the first step, open the file:

 

themes\Frontend\Bare \frontend\Bare\frontend\listing\index.tpl

 

And look for:

 

{* Banner *}

{*block name="frontend_listing_index_banner"}

{if !$hasEmotion}

{include file='frontend/listing/banner.tpl'}

{/if}

{/block*}

 

Here, you need to delete {if !$hasEmotion} so that the file looks like this at the end:

 

{* Banner *}

{block name="frontend_listing_index_banner"}

{include file='frontend/listing/banner.tpl'}

{/block}

 

Now save the file and clear your browser cache.