TCS Posted May 21, 2018 Share Posted May 21, 2018 Hi, we are creating a new store on PS1.7.3 and on our old 1.6 we added some features on our product description so that user could see the warranty and reference code right away. But the file and code structure changed in 1.7 and we are not sure where we should place our custom code. the code looked like this. {if isset($product.features)} {foreach from=$product.features item=feature} <p {if empty($feature.value) || !$feature.value} style="display: none;"{/if}> <label>{l s='Garantía: '} </label> <span class="editable" itemprop="sku">{$feature.value}</span> </p> {/foreach} {/if} <p {if empty($product.reference) || !$product.reference} style="display: none;"{/if}> <label>{l s='Referencia: '} </label> <span class="editable" itemprop="sku">{$product.reference}</span> </p> We placed it right under the product name section but it does not work in 1.7 does anyone know how to achive this in 1.7? Regards, Link to comment Share on other sites More sharing options...
mir-aus Posted July 30, 2019 Share Posted July 30, 2019 Hi there I have the same problem, any sugetsion ? Link to comment Share on other sites More sharing options...
Apar Posted July 30, 2019 Share Posted July 30, 2019 I think this is the template file you are looking for themes\YOUR_THEME\templates\catalog\_partials\miniatures\product.tpl Link to comment Share on other sites More sharing options...
mir-aus Posted July 30, 2019 Share Posted July 30, 2019 NO in admin Link to comment Share on other sites More sharing options...
Apar Posted July 30, 2019 Share Posted July 30, 2019 (edited) For custom data fields in the product you will need a module for that Or you will need to override the product core classes and controller. Or you can use features to add the data you need for the product just like @TCS did. Edited July 30, 2019 by Apar (see edit history) Link to comment Share on other sites More sharing options...
BZZYBI Posted January 17, 2020 Share Posted January 17, 2020 I Too am looking for this module. Link to comment Share on other sites More sharing options...
DJAd Posted July 14, 2020 Share Posted July 14, 2020 Is there a module I can get or a way to do this? Link to comment Share on other sites More sharing options...
guenievre Posted October 30, 2020 Share Posted October 30, 2020 hello it's possible to add this code for product list and features? if yes can you help me please? {if isset($product.features)} {foreach from=$product.features item=feature} <p {if empty($feature.value) || !$feature.value} style="display: none;"{/if}> <label>{l s='Garantía: '} </label> <span class="editable" itemprop="sku">{$feature.value}</span> </p> {/foreach} {/if} <p {if empty($product.reference) || !$product.reference} style="display: none;"{/if}> <label>{l s='Referencia: '} </label> <span class="editable" itemprop="sku">{$product.reference}</span> </p> Link to comment Share on other sites More sharing options...
guenievre Posted October 30, 2020 Share Posted October 30, 2020 https://martin-distribution.fr/ https://martin-distribution.fr/2-accueil for product list all categories of my site? Link to comment Share on other sites More sharing options...
apollux Posted November 6, 2020 Share Posted November 6, 2020 On 10/30/2020 at 10:36 AM, guenievre said: hello it's possible to add this code for product list and features? if yes can you help me please? {if isset($product.features)} {foreach from=$product.features item=feature} <p {if empty($feature.value) || !$feature.value} style="display: none;"{/if}> <label>{l s='Garantía: '} </label> <span class="editable" itemprop="sku">{$feature.value}</span> </p> {/foreach} {/if} <p {if empty($product.reference) || !$product.reference} style="display: none;"{/if}> <label>{l s='Referencia: '} </label> <span class="editable" itemprop="sku">{$product.reference}</span> </p> Expand Maybe this will help Link to comment Share on other sites More sharing options...
apollux Posted November 6, 2020 Share Posted November 6, 2020 On 7/14/2020 at 9:54 PM, DJAd said: Is there a module I can get or a way to do this? Expand It might help you 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