how can i disable new admin toolbar on storefront when admin or vendor login ?
design/themes/responsive/templates/index.tpl
replace
{include file="administration_panel.tpl"}
with
{*include file="administration_panel.tpl"*}
Then clear cache
thank you
Hi,
Is it possible to do it on 4.11.5?
I can not find the
{include file="administration_panel.tpl"}
in
design/themes/responsive/templates/index.tpl
thank you :)
Try to replace
{include file="backend:components/bottom_panel/bottom_panel.tpl" logo = $logo.theme.image|default:$logos.theme.image}
with
{*include file="backend:components/bottom_panel/bottom_panel.tpl" logo = $logo.theme.image|default:$logos.theme.image*}
(!) Not tested
Sorry to bother you, but would you check PM I sent you
Try to replace
{include file="backend:components/bottom_panel/bottom_panel.tpl" logo = $logo.theme.image|default:$logos.theme.image}with
{*include file="backend:components/bottom_panel/bottom_panel.tpl" logo = $logo.theme.image|default:$logos.theme.image*}(!) Not tested
Hi can anybody know 4.16.x hide toolbar
Use solution from my last post
Sorry i want to admin bottom panel i want to hide backend
design/backend/templates/index.tpl
i found thanks
how to disable the bottom toolbar just for vendors
You can create a new post init controlled in the My Changes add-on, app/add-ons/my_changes/controllers/backend/init.post.php with the following content:
<?php
use Tygh\Enum\UserTypes;
if (!defined('BOOTSTRAP')) { die('Access denied'); }
$bottom_panel = defined('THEMES_PANEL') || (!empty($auth['user_type']) && UserTypes::isAdmin($auth['user_type']));
Tygh::$app['view']->assign('is_bottom_panel_available', $bottom_panel);