Вопрос

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.

Это было полезно?

Решение

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});
    }
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top