Compatibility PrestaShop 1.7.x, 1.7.7.x, 1.7.8.3
Apparel is fully responsive Prestashop Theme dedicated for all stores selling clothes, furniture, watches, Jewelry, food ,etc. It has many attractive animations, modern and attractive design. Do you sell clothing for clothes, furniture, watches, Jewelry, food or accessories like bags, hats, belts, etc. ? These designs are made for you.
This Theme is a wonderful theme in Prestashop 1.7.x – the newest version at this moment with full features & classy layouts of online store. It is fully responsive and looks stunning on all types of screens and devices.
Live Demo
I've noticed the theme has a bug that makes images be static on product page (they don't change according to the combination if there are different images for different combinations.
I've found a post that solves the problem and transcribed it below:
Apparel is fully responsive Prestashop Theme dedicated for all stores selling clothes, furniture, watches, Jewelry, food ,etc. It has many attractive animations, modern and attractive design. Do you sell clothing for clothes, furniture, watches, Jewelry, food or accessories like bags, hats, belts, etc. ? These designs are made for you.
This Theme is a wonderful theme in Prestashop 1.7.x – the newest version at this moment with full features & classy layouts of online store. It is fully responsive and looks stunning on all types of screens and devices.
Live Demo
Post automatically merged:
Hey there mates,Compatibility PrestaShop 1.7.x, 1.7.7.x, 1.7.8.3
Apparel is fully responsive Prestashop Theme dedicated for all stores selling clothes, furniture, watches, Jewelry, food ,etc. It has many attractive animations, modern and attractive design. Do you sell clothing for clothes, furniture, watches, Jewelry, food or accessories like bags, hats, belts, etc. ? These designs are made for you.
This Theme is a wonderful theme in Prestashop 1.7.x – the newest version at this moment with full features & classy layouts of online store. It is fully responsive and looks stunning on all types of screens and devices.
Live Demo
I've noticed the theme has a bug that makes images be static on product page (they don't change according to the combination if there are different images for different combinations.
I've found a post that solves the problem and transcribed it below:
Credits: https://stackoverflow.com/questions...1-7-7-2-product-variations-images-dont-changeHTML:Resume: replace $product.cover by $product.default_image or remplace the complet file Detail : So the culprit is : the file --> product-cover-thumbnails.tpl (located in template/catalog/_partial) The bug (well it's not really a bug but a change of doctrine at Prestashop) occurs in case of update if you went for example from 1.7xx to 1.7.7 SMARTY condition // line 28 {if $product.cover} // replace by {if $product.default_image} // line 29 <img class="js-qv-product-cover" src="{$product.cover.bySize.large_default.url}" alt="{$product.cover.legend}" title="{$product.cover.legend}" style="width:100%;" itemprop="image"> // replace by <img class="js-qv-product-cover" src="{$product.default_image.bySize.large_default.url}" alt="{$product.default_image.legend}" title="{$product.default_image.legend}" style="width:100%;" itemprop="image"> // line 45 replace <img class="thumb js-thumb {if $image.id_image == $product.cover.id_image} selected {/if}" data-image-medium-src="{$image.bySize.medium_default.url}" data-image-large-src="{$image.bySize.large_default.url}" src="{$image.bySize.home_default.url}" alt="{$image.legend}" title="{$image.legend}" width="100" itemprop="image" > // replace by <img class="thumb js-thumb {if $image.id_image == $product.default_image.id_image} selected {/if}" data-image-medium-src="{$image.bySize.medium_default.url}" data-image-large-src="{$image.bySize.large_default.url}" src="{$image.bySize.home_default.url}" alt="{$image.legend}" title="{$image.legend}" width="100" itemprop="image" >
Attachments
Last edited: