1. Disable Color Menu Item in Magento templates:
Go to: app\design\frontend\default\jm_nametemplate\ page\ja_vars.php:
http://static.joomlart.com/ima…%27s_Color.png
Find the PHP codeline and set the parameter is 0:
PHP Code:
$_params->set('usertool_font', 0); //0: disable, 2: show font tools
$_params->set('usertool_color', 0); //0: disable, 4: show colors tools
2. Add more Colors in Magento templates:
You can configure the color theme with any color you expect as our demo site by editing file: app\design\frontend\default\jm_nametemplate\ page\ja_vars.php
Find the PHP Code line: $_params->set(‘ja_color’,’default’);//default, red, blue
Please kindly replace with:
PHP Code:
$_params->set(‘ja_color’,’light’);//’default’,’blue’,’red’,’teal’,’gray’,’green’,’yell ow’,’cream’,’light’
#Supported colors
$tmpTools->setColorThemes (array(‘default’,’blue’,’red’,’teal’,’gray’,’green’,’yell ow’,’cream’,’light’ ));
5 answers
Thank you -- that did the trick for me.
How do I get rid of the ‘Minisite’s Color’ menu altogether? I do not want it on the website. Please help me delete it. I have the pink color activated and that’s how I want the site viewed.
Please change this:
$_params->set(‘usertool_color’, 4); //0: disable, 4: show colors tools
to
$_params->set(‘usertool_color’, 0); //0: disable, 4: show colors tools
in ja_vars.php
Hi there,
After I set the parameter to 0, the menu still appears in frontpage. Should I need to do any extra step?
Best regards
Hi there,
Once you’ve done changes, REMEMBER to Clear your Magento cache, browser cache to see the changes.
Regards.