Hello
i use your related products pro module,
recently i switched my template to "ceramics" theme so-called "jms-ceramics" and from this moment my "carousell" for related products pro stopped work. I tried to upload new version of module, reinstalled it, reconfigured but these things wont help
what i can do?
Problem with product-list.tpl in your theme
the problem was related to fact that your theme product-list.tpl file creates a list of products in non-default way. This is what you've got:
<div id="product_list" class="products-list products-list-in-column row">
and this is how it should be:
<div {if isset($id) && $id} id="{$id}"{else} id="product_list"{/if} class="products-list products-list-in-column row">
This is default prestashop's code to build the list of products.
This caused problem because module "related products pro" uses #ID of block to build a slider.
I modified the module .tpl file to use class "products-list" instead, so it will work in your theme properly
the effect is:
best regards,
milos
0 comments:
Post a Comment