Hi Nic, I have a little problem here ,
us.miicards.com/business-cards/silk-card...silk-business-cards-
, went change the quantity the application below not work , I think has something to do with LOADING JQUERY MULTIPLE TIMES , the template developer said this :
HOW TO PREVENT LOADING JQUERY MULTIPLE TIMES?
There is an ongoing discussion in the Joomla community on how to prevent loading jQuery multiple times across extensions. We have already taken steps and measures by implementing a widely accepted solution. We register through JApplication whether jQuery is loaded or not. In case a 3rd party extension loads the jQuery library you can use the following code snippet to prevent our ZOO extension, Widgetkit or Warp theme from loading it twice:
// load jQuery, if not loaded before
if (!JFactory::getApplication()->get('jquery')) {
JFactory::getApplication()->set('jquery', true);
// add jQuery
...
}
You can also get in touch with the 3rd party extension developer and kindly ask them to implement this.
Thanks so much for your help.