antoniocosentino
5/3/2018 - 9:40 AM

Shopware5 template customization for Dirndltopia (fixes issue with mobile menu shown on desktop). Replace here: /shopware5/engine/Shopware/P

Shopware5 template customization for Dirndltopia (fixes issue with mobile menu shown on desktop). Replace here: /shopware5/engine/Shopware/Plugins/Local/Frontend/StylaSEO/Views/frontend/magazin/index.tpl

{extends file='parent:frontend/custom/index.tpl'}

{block name='frontend_index_header'}
    {include file='frontend/magazin/header.tpl'}
{/block}

{* Sidebar left *}
{block name='frontend_index_content_left'}
    {$smarty.block.parent}
    <style>
        /* hide on desktop version */
        @media (min-width: 768px) {
            aside.sidebar-left { display: none; }
        }
    </style>
{/block}