Template options gone (Storefront - Joomla 3.7.5)
Joomla webshop template with CSS3-based animations, VirtueMart support and one-page checkout.
Hi,
Template options are gone / missing in template gk_Storefront - Joomla 3.7.5
This did not work for me:
-
https://www.gavick.com/forums/search?ke ... tions+gone- reinstalling the template
Is there a solution?
Thank you.
Maarten.
-
- Fresh Boarder
Hi,
Try to change the following line from /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';
-
- Moderator
-