Shopware 5.6.1 Staffelpreise: Feld "priceCurrency" fehlt

Hallo,

wir haben auf Staffelpreise umgestellt, seither stört sich die SearchConsole, Merchants und AdWords-Shopping daran, dass das RichSnippet für „priceCurrency“ fehlt. Hat jemand eine Idee, warum das so ist und wie man das beheben kann?

Vielen Dank!

habe das vorläufig so in in 5.5.4 in der frontend/detail/content/buy_container.tpl gefixed:

{extends file='parent:frontend/detail/content/buy_container.tpl'}

{* Fix für die Währung, kann ggf. später entfernt werden *}

{block name='frontend_detail_index_data'}
            {if $sArticle.sBlockPrices}
                {$lowestPrice=false}
                {$highestPrice=false}
                {foreach $sArticle.sBlockPrices as $blockPrice}
                    {if $lowestPrice === false || $blockPrice.price < $lowestPrice}
                        {$lowestPrice=$blockPrice.price}
                    {/if}
                    {if $highestPrice === false || $blockPrice.price > $highestPrice}
                        {$highestPrice=$blockPrice.price}
                    {/if}
                {/foreach}
                
                
                
              {/if}
                

            {include file="frontend/detail/data.tpl" sArticle=$sArticle sView=1}
{/block}

 

1 „Gefällt mir“