explodedk wrote:
as far as i have tested, when deleting the text, it reappears in the backend as the default text, but not on the frontend... so this way you can hide it ...
Right...but that's not right.
The problem is that if someone don't want to use the vertical title and saves, so he cleans the field and it's fine for the first time on frontend. But if the user makes any other change on template parameters, this will bring up again the default value.
So please make this change. I will recommend this to our programmer and if he agrees, it will be change also on the next update.
Please open templateDetails.xml file and find this lines:
- Code: Select all
<param name="topsl1_vtext" type="text" label="Top 1-6 vertical text" description="Here you can set text visible on right side of position Top 1-6" default="Personal" />
<param name="topsl2_vtext" type="text" label="Top 7-12 vertical text" description="Here you can set text visible on right side of position Top 7-12" default="Portfolio" />
<param name="topsl3_vtext" type="text" label="Top 13-18 vertical text" description="Here you can set text visible on right side of position Top 13-18" default="Blog" />
<param name="botsl1_vtext" type="text" label="Bottom 1-6 vertical text" description="Here you can set text visible on right side of position Bottom 1-6" default="Bottom content" />
<param name="botsl2_vtext" type="text" label="Bottom 7-12 vertical text" description="Here you can set text visible on right side of position Bottom 7-12" default="Additional content" />
replace with
- Code: Select all
<param name="topsl1_vtext" type="text" label="Top 1-6 vertical text" description="Here you can set text visible on right side of position Top 1-6" default="" />
<param name="topsl2_vtext" type="text" label="Top 7-12 vertical text" description="Here you can set text visible on right side of position Top 7-12" default="" />
<param name="topsl3_vtext" type="text" label="Top 13-18 vertical text" description="Here you can set text visible on right side of position Top 13-18" default="" />
<param name="botsl1_vtext" type="text" label="Bottom 1-6 vertical text" description="Here you can set text visible on right side of position Bottom 1-6" default="" />
<param name="botsl2_vtext" type="text" label="Bottom 7-12 vertical text" description="Here you can set text visible on right side of position Bottom 7-12" default="" />
Cheers