Default Color Scheme?

Hi,

How to set default color scheme and disable color switcher?

Cheers
R

2 answers

Profile photo of Saguaros 0.00 $tone July 30, 2012
Public

Hi mcweb,

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 Blue, for example?

Replace this code
$_params->set(‘ja_color’,’default’);//’default’,’blue’,’brown’,’green’\

with

$_params->set(‘ja_color’,’blue’);//’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.

#1

This question is now closed

Written By

Comments