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’;