Using latest Storefront template.
I have just updated Joomla to 3.7.
Now I cannot work on the Storefront styles anymore. Just possible to make a copy and save. Thats all.
Need an update of the template? Will there be an update?
var type = items[i].split('=')[0].test(/^\d+$/) ? 'ItemID' : 'Option';
var type = !isNaN(items[i].split('=')[0]) ? 'ItemID' : 'Option’;
Joshua M wrote:Hi,
Yes, we are working on the update, as a temporary solution please change the following line from templates/gk_storefront/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’;
Joshua M wrote:It's a path for the StoreFront template, for the creativity, this line may be found in gk_creativity/admin/scripts.js (line 247)
var type = !isNaN(items[i].split('=')[0]) ? 'ItemID' : 'Option';
if (VmConfig::get('showCategory', 1)) {
if ($this->cat_productdetails) {