BPH Posted February 4, 2019 Share Posted February 4, 2019 Bonjour, je suis en train de créer ma première boutique en ligne et j'aimerai savoir comment je peux faire disparaitre les blocs "fiche technique" et "en savoir plus" de la fiche produit. Est c que je dois faire une manip sur le code HTML ou bien y-a t'il une manip plus facile à faire dans le back-office? Je suis sur Prestashop 1.6 et le thème est le thème général fourni avec la version 1.6 merci pour votre aide Link to comment Share on other sites More sharing options...
Eolia Posted February 4, 2019 Share Posted February 4, 2019 Dans le product.tpl ajoutez {* avant ces blocs et *} juste après Link to comment Share on other sites More sharing options...
BPH Posted February 4, 2019 Author Share Posted February 4, 2019 merci beaucoup Eolia Link to comment Share on other sites More sharing options...
BPH Posted February 4, 2019 Author Share Posted February 4, 2019 Dis moi stp dans quel dossier je vais trouver le dossier product.tpl Link to comment Share on other sites More sharing options...
Eolia Posted February 4, 2019 Share Posted February 4, 2019 /themes/ton_theme/ Link to comment Share on other sites More sharing options...
BPH Posted February 4, 2019 Author Share Posted February 4, 2019 Merci Eolia Tu me sauves la vie😁 Link to comment Share on other sites More sharing options...
doekia Posted February 4, 2019 Share Posted February 4, 2019 (edited) je n''ai pas compris la demande à priori, car il me semblait qu'il suffisait de ne pas remplir de description longue pour ne pas avoir de "en savoir plus" et ne pas remplir de caractéristiques pour ne pas avoir de "fiche technique" Edited February 4, 2019 by doekia (see edit history) Link to comment Share on other sites More sharing options...
Eolia Posted February 4, 2019 Share Posted February 4, 2019 Oui mais ca c'était "avant" et parfois un simple espace suffit... ou un code html genre <p></p> Link to comment Share on other sites More sharing options...
BPH Posted February 4, 2019 Author Share Posted February 4, 2019 Bonjour Doekia, Apparemment non. J'écris une description brève du produit, mais il y a d'autres blocs "Fiche technique" et "En savoir plus" qui s'affiche sur la fiche produit et je veux faire disparaître ces blocs qui ne me servent à rien pour mon produit. Eolia m'a fourni une solution, mais je n'arrive pas à rentrer dans le code pour apporter la modification nécessaire. Link to comment Share on other sites More sharing options...
Eolia Posted February 4, 2019 Share Posted February 4, 2019 {*if isset($features) && $features} <!-- Data sheet --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='Data sheet'}</h3> <table class="table-data-sheet"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </section> <!--end Data sheet --> {/if} {if isset($product) && $product->description} <!-- More info --> <section class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <!-- full description --> <div class="rte">{$product->description}</div> </section> <!--end More info --> {/if*} Link to comment Share on other sites More sharing options...
doekia Posted February 4, 2019 Share Posted February 4, 2019 ça m'a plus l'air d'être un bug de ton thème quand même Link to comment Share on other sites More sharing options...
BPH Posted February 4, 2019 Author Share Posted February 4, 2019 Merci Eolia 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