Last active
May 3, 2018 09:41
-
-
Save antoniocosentino/e3d8543e424076c5c77c5c15cbb4c6c6 to your computer and use it in GitHub Desktop.
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{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} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment