ecommdev Posted June 19, 2014 Share Posted June 19, 2014 I know the exact file, Open yourdomain/youradmin\themes\default\template\page_header_toolbar.tpl BUT don't know the exact coding to remove the "recommend modules" Example Login to Backoffice, click on Orders and on the page header toolbar on the right hand side will say "recommend modules" I would like to remove. Let me know which coding. Link to comment Share on other sites More sharing options...
vekia Posted June 19, 2014 Share Posted June 19, 2014 open file: /classes/controller/AdminController.php and remove contents from function: protected function addPageHeaderToolBarModulesListButton() { $this->filterTabModuleList(); if (is_array($this->tab_modules_list['slider_list']) && count($this->tab_modules_list['slider_list'])) $this->page_header_toolbar_btn['modules-list'] = array( 'href' => '#', 'desc' => $this->l('Recommended Modules') ); } Link to comment Share on other sites More sharing options...
ecommdev Posted June 19, 2014 Author Share Posted June 19, 2014 Removing that coding within the file causes to break the entire backoffice, goes complete blank white screen, I was assuming it would be similar procedure to http://www.prestashop.com/forums/topic/334626-need-to-disable-help-function-in-16-backoffice/ Let me know. Link to comment Share on other sites More sharing options...
vekia Posted June 19, 2014 Share Posted June 19, 2014 you removed probably whole function, instead of this remove only function contents. Link to comment Share on other sites More sharing options...
ecommdev Posted June 20, 2014 Author Share Posted June 20, 2014 I removed the provided coding, what did I do wrong? Link to comment Share on other sites More sharing options...
vekia Posted June 22, 2014 Share Posted June 22, 2014 you removed probably whole function, instead of this remove only function contents. Link to comment Share on other sites More sharing options...
admin_eclipse Posted November 19, 2014 Share Posted November 19, 2014 i tried and crash.. i manage to undo.. then try this and its works.. Just remove this : if (is_array($this->tab_modules_list['slider_list']) && count($this->tab_modules_list['slider_list'])) $this->page_header_toolbar_btn['modules-list'] = array( 'href' => '#', 'desc' => $this->l('Recommended Modules') ); dont remove the rest.. Link to comment Share on other sites More sharing options...
Recommended Posts