Domanda

I am using magento 1.9.3.2. In Product Detail page, more views working fine in website view. But Not working in Responsive Mobile Theme.

È stato utile?

Soluzione

I got error in console TypeError: this.toggleElements.toggleSingle is not a function.

This link solved my problem. Thanks @Jelle Siderius.

Change Code in app.js as follows:

 match: function () {
    if(this.toggleElements.length > 0){
        this.toggleElements.toggleSingle();
    }
},
unmatch: function () {
    if(this.toggleElements.length > 0){
        this.toggleElements.toggleSingle({destruct: true});
    }
}
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a magento.stackexchange
scroll top