Find File: \templates\gk_finance_business\templateDetails.xml
Find Lines: 176 to 181 which is below.
- Code: Select all
<field name="template_color" type="list" default="1" label="TPL_GK_LANG_TEMPLATE_COLOR" description="TPL_GK_LANG_TEMPLATE_COLOR_DESC">
<option value="1">TPL_GK_LANG_COLOR_1</option>
<option value="2">TPL_GK_LANG_COLOR_2</option>
<option value="3">TPL_GK_LANG_COLOR_3</option>
<option value="4">TPL_GK_LANG_COLOR_4</option>
</field>
Replace with below
- Code: Select all
<field name="template_color" type="list" default="1" label="TPL_GK_LANG_TEMPLATE_COLOR" description="TPL_GK_LANG_TEMPLATE_COLOR_DESC">
<option value="1">TPL_GK_LANG_COLOR_1</option>
<option value="2">TPL_GK_LANG_COLOR_2</option>
<option value="3">TPL_GK_LANG_COLOR_3</option>
<option value="4">TPL_GK_LANG_COLOR_4</option>
<option value="5">TPL_GK_LANG_COLOR_5</option>
</field>
Find File:\language\en-GB\en-GB.tpl_gk_finance_business.ini
Find Line: 28 which is below.
- Code: Select all
TPL_GK_LANG_COLOR_4="red"
Replace with below
- Code: Select all
TPL_GK_LANG_COLOR_4="red"
TPL_GK_LANG_COLOR_5="purple"
Do below if you want to make this style available in front end as well.
Find File: \templates\gk_finance_business\layouts\blocks\footer.php
Find Lines: 21 to 26 which is below
- Code: Select all
<p id="gkStyleArea">
<a href="#" id="gkStyle1">blue</a>
<a href="#" id="gkStyle2">green</a>
<a href="#" id="gkStyle3">orange</a>
<a href="#" id="gkStyle4">red</a>
</p>
Replace it with below
- Code: Select all
<p id="gkStyleArea">
<a href="#" id="gkStyle1">blue</a>
<a href="#" id="gkStyle2">green</a>
<a href="#" id="gkStyle3">orange</a>
<a href="#" id="gkStyle4">red</a>
<a href="#" id="gkStyle5">purple</a>
</p>
See you around...