How remove default module in fuel cms

191 Views Asked by At

I want to remove all the module in the red box.

I login using admin login, the default login given by fuel cms. How to remove the default module that has been provided in admin login?

1

There are 1 best solutions below

0
Swarna Sekhar Dhar On BEST ANSWER

removing will not be an good option instead you can hide them

To hide go to

fuel/application/config/MY_fuel_modules.php

and add one line as follow for each module you want to hide .

$config['module_overwrites']['module_name']['hidden'] = TRUE;

Example:

$config['module_overwrites']['pages']['hidden'] = TRUE; //to hide page module
$config['module_overwrites']['assets']['hidden'] = TRUE; //to hide assets module