SPACE 92 Posted April 4, 2018 Share Posted April 4, 2018 I would like to hide the help button form the backoffice, i already removed the "demo button" with an overide from the AdminDashboardController, i don't know the name of the button wish is used. Someone knows the name of the button ? thanks a lot in advance, i'm running on prestashop 1.7.3 <?php class AdminDashboardController extends AdminDashboardControllerCore { public function initPageHeaderToolbar() { parent::initPageHeaderToolbar(); unset($this->page_header_toolbar_btn['switch_demo']); } } Link to comment Share on other sites More sharing options...
Ali Samie Posted April 10, 2023 Share Posted April 10, 2023 i think instead of override which is not recommended you can add a custom css with a custom module #toolbar-nav .btn-help, .toolbar-icons .btn-help { display: none; } Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now