Hallo,
ich habe heute gemerkt das bei mir im Shop www.klimastore24.de das Erweitertes Menü nicht mehr geht! Habe es auch schon mehrmals den Cache gelöscht und das Plugin Neu Installiert jedoch ohne erfolg ;(
es sieht ganz so aus als ob die JS nicht geladen wird Bzw. Laut Console "Uncaught TypeError: element[pluginName] is not a function 1468432592_d10a5d0….js:4443"
in der Zeile 4443 steht folgendes: element[pluginName](currentConfig);
Hier noch der ganze Script:
_initSinglePlugin: function (element, selector, pluginName) {
var me = this,
currentConfig = me._getPluginConfig(me._currentState, selector, pluginName),
plugin = element.data('plugin_' + pluginName);
if (!plugin) {
element[pluginName](currentConfig);
return;
}
if (JSON.stringify(currentConfig) === JSON.stringify(me._getPluginConfig(me._previousState, selector, pluginName))) {
if (typeof plugin.update === 'function') {
plugin.update.call(plugin, me._currentState, me._previousState);
}
return;
}
me.destroyPlugin(element, pluginName);
element[pluginName](currentConfig);
},
Schaut es euch am besten an: http://klimastore24.de
Danke im voraus