After the update on Joomla 3.7.0, the settings were lost Manager templates / Change style
var type = items[i].split('=')[0].test(/^\d+$/) ? 'ItemID' : 'Option';
var type = !isNaN(items[i].split('=')[0]) ? 'ItemID' : 'Option’;
Joshua M wrote:Hi,
Try to change the following line from gk_creativity/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:Could you please provide me with a URL to your website and back-end access via PM (click the “Private Message” text underneath my avatar) so that I may analyze it?