Jump to content

Remove "recommend modules" interface in Backoffice 1.6


Recommended Posts

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

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

  • 4 months later...

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

×
×
  • Create New...