Liebe Community,
ich versuche von folgendem Template abzuleiten:
/custom/plugins/SwagBusinessEssentials/Resources/views/frontend/index/index.tpl
Dazu habe ich eine Datei hier abgelegt:
/themes/Frontend/Local/frontend/plugins/index/index.tpl
und mit folgendem Inhalt versehen:
{extends file="parent:frontend/index/index.tpl"}
{block name="frontend_index_page_wrap"}
{if $requireReload}
(function() {
window.location.reload();
})();
{else}
{$smarty.block.parent}
{/if}
{/block}
{* Hides the shop-navigation including the wishlist-, cart- and account-icon *}
{block name='frontend_index_shop_navigation'}
{$smarty.block.parent}
{/block}
{* Hides the category overview in the header *}
{block name='frontend_index_navigation_categories_top'}
{$smarty.block.parent}
{/block}
{* Hides the language- and currency-switcher, as well as the compare icon *}
{block name='frontend_index_top_bar_container'}
{$smarty.block.parent}
{/block}
{* Shows the minimal footer, if necessary *}
{block name="frontend_index_footer"}
{if !$minimalView}
{$smarty.block.parent}
{else}
{block name="frontend_index_footer_swag_business_essentials"}
{include file="frontend/index/footer_minimal.tpl"}
{/block}
{/if}
{/block}
Leider „greift“ die Datei nicht. Von der Logik sollte es aber passen. Weiß jemand Rat?