Hi
We only updated last 12 templates for new joomla, but there are no problems with using rest of them. Just one small thing to make template configuration work:
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';