template settings gone after 3.7 update
Support desk for Villa Belluci Joomla Hotel Template
- GK User
- Sat May 13, 2017 2:05 pm
Hi
It seems my template settings are gone after joomla 3.7 update, I tried clearing normal Joomla cache with no success. Any solutions ?
It seems my template settings are gone after joomla 3.7 update, I tried clearing normal Joomla cache with no success. Any solutions ?
-
- Junior Boarder
- Joshua M
- Mon May 15, 2017 8:18 am
Hi,
Did you update your template to the latest version?
Did you update your template to the latest version?
-
- Moderator
- GK User
- Mon May 15, 2017 9:07 am
Thanks for your fast answer.
No I did not because I'm afraid the custom design (in the case of this template) may change, unfortunately I think with this template I couldn't keep the core files of the template 'untouched'.
I saw in an other post that this code below may help fix the issue. And it worked for me, but now I wonder if that's enough ??? With enough I mean is the template with this fix now still fully functional and safe ? What else has been "fixed" and what else can I do to be sure things continue to work ?
=
Meanwhile use this fast fix:
Please change the following line from templates/gk_simplicity/admin/scripts/js file:
Code: Select all
var type = items[i].split('=')[0].test(/^\d+$/) ? 'ItemID' : 'Option';
into:
Code: Select all
var type = !isNaN(items[i].split('=')[0]) ? 'ItemID' : 'Option’;
No I did not because I'm afraid the custom design (in the case of this template) may change, unfortunately I think with this template I couldn't keep the core files of the template 'untouched'.
I saw in an other post that this code below may help fix the issue. And it worked for me, but now I wonder if that's enough ??? With enough I mean is the template with this fix now still fully functional and safe ? What else has been "fixed" and what else can I do to be sure things continue to work ?
=
Meanwhile use this fast fix:
Please change the following line from templates/gk_simplicity/admin/scripts/js file:
Code: Select all
var type = items[i].split('=')[0].test(/^\d+$/) ? 'ItemID' : 'Option';
into:
Code: Select all
var type = !isNaN(items[i].split('=')[0]) ? 'ItemID' : 'Option’;
-
- Junior Boarder
- Joshua M
- Mon May 15, 2017 9:29 pm
If you modified your template files, now you should compare the changes - please use FileMerge or WinMerge app.
For the basic backend settings fix - please update gk_hotel/admin/scripts.js file.
For the basic backend settings fix - please update gk_hotel/admin/scripts.js file.
-
- Moderator
4 posts
• Page 1 of 1