Проблема с подгрузкой изображений в теме MegaShop 2.0
Проблема следующая:
в категориях товара фото и цены меняются все хорошо, до того момента пока не зайдешь в карточку товара, после перехода в карточку товара и обратно на предыдущею страницу категорий изображения перестают подгружаться. Как решить данную проблему?
$.saleskuPluginProductElements._Selectors.price = '.c-product-thumb__price';
$.saleskuPluginProductElements.Price = function(root_element) {
return root_element.find(this._Selectors.price);
};
$.saleskuPluginProductElements._Selectors.image = '.l-image-box';
saleskuPluginProduct.prototype.after_binds = {
'megashop_form' : function(self) {
self.getElements().root_element.removeClass('c-product_has-multi-skus');
self.getElements().root_element.find('.c-product_has-multi-skus').removeClass('c-product_has-multi-skus');
}
};
saleskuPluginProduct.prototype.setComparePrice = function (compare_price) {
if (compare_price) {
$compare_price = this.getElements().ComparePrice();
if (!$compare_price.length) {
$compare_price = $(this.getElements().Selectors().compare_price_html);
this.getElements().Price().after($compare_price);
}
$compare_price.html(this.currencyFormat(compare_price)).show();
} else {
this.getElements().ComparePrice().remove();
}
};