StrefaBiznesu Posted July 20, 2022 Share Posted July 20, 2022 Hi, Which module on PrestaShop manage related products. I have add 4 products on product page in BO. On front office i see additional tab, that showing this. But I want to disable this. Tried few modules disabling but this tab still there. Link to comment Share on other sites More sharing options...
webprog Posted July 20, 2022 Share Posted July 20, 2022 There is no tabs for related products in classic theme, tested in 1.7.8.5 So, I think, that you have not classic theme. Try to clear cache. Link to comment Share on other sites More sharing options...
StrefaBiznesu Posted July 20, 2022 Author Share Posted July 20, 2022 It is custom theme. No module or settings found. Asked theme developer. He said, I should check PrestaShop modules. So he don't know either. Link to comment Share on other sites More sharing options...
webprog Posted July 21, 2022 Share Posted July 21, 2022 You can check, in classic theme the code, which responds for output of related products, is here: themes\classic\templates\catalog\product.tpl And it begins from 228 line: {block name='product_accessories'} {if $accessories} <section class="product-accessories clearfix"> <p class="h5 text-uppercase">{l s='You might also like' d='Shop.Theme.Catalog'}</p> <div class="products row"> {foreach from=$accessories item="product_accessory" key="position"} {block name='product_miniature'} {include file='catalog/_partials/miniatures/product.tpl' product=$product_accessory position=$position productClasses="col-xs-6 col-lg-4 col-xl-3"} {/block} {/foreach} </div> </section> {/if} {/block} 1 Link to comment Share on other sites More sharing options...
ComGrafPL Posted July 22, 2022 Share Posted July 22, 2022 Try also search in theme modules, that are related to product customization settings. Maybe some additional code is add to it. Themes something has something like that. 1 Link to comment Share on other sites More sharing options...
StrefaBiznesu Posted July 22, 2022 Author Share Posted July 22, 2022 2 hours ago, ComGrafPL said: Try also search in theme modules, that are related to product customization settings. Maybe some additional code is add to it. Themes something has something like that. Found it. Well. Theme developer found is. It was hidden in general theme settings. Thanks. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now