Hi,
How can i set the default color to orange and remove the other color options?
Thanks,
BerD
1 answer
Hi BerD,
Go to this File : app\design\frontend\default\your_default_template\ template\page\ja_vars.php
1) How to make the default colour to be Orange?
Replace this code
$_params->set(‘ja_color’,’default’);//’default’,’orange’,’brown’,’green’\
with
$_params->set(‘ja_color’,’orange’);//’default’,’blue’,’brown’,’green’
2) How to remove/hide/disable the colour menu from appearing?
Find this code and replace this code
$_params->set(‘usertool_color’, 4); //0: disable, 4: show colors tools
With
$_params->set(‘usertool_color’, 0); //0: disable, 4: show colors tools
Once Done Clear your Magento cache, browser cache to see the changes.
Regards.