Peter Pastoor Posted May 19, 2015 Share Posted May 19, 2015 Hoi enzo Hoe kan je ook alweer de tekst 'model' en 'conditie' verwijderen van de productpagina's? Ben overal al geweest maar kan het niet vinden. Google helpt ook niet helaas Thnx. Link to comment Share on other sites More sharing options...
Erik G Posted May 19, 2015 Share Posted May 19, 2015 (edited) Beste Peter, Het kan niet in de BO van Prestashop. Je zal zelf wat code moeten aanpassen in het product.tpl bestand of in het product.css bestand. Hoe het kan lees je hier (Engels). Condition uitschakelen: https://www.prestashop.com/forums/topic/311217-removing-the-conditions/?p=1617817 Model / reference: https://www.prestashop.com/forums/topic/334550-solved-remove-model-from-product-page-reference/ Succes Edited May 19, 2015 by Erik G (see edit history) Link to comment Share on other sites More sharing options...
Peter Pastoor Posted May 19, 2015 Author Share Posted May 19, 2015 Dank je wel! Ik ga er mee aan de slag! Link to comment Share on other sites More sharing options...
Peter Pastoor Posted May 19, 2015 Author Share Posted May 19, 2015 Beste Peter, Het kan niet in de BO van Prestashop. Je zal zelf wat code moeten aanpassen in het product.tpl bestand of in het product.css bestand. Hoe het kan lees je hier (Engels). Condition uitschakelen: https://www.prestashop.com/forums/topic/311217-removing-the-conditions/?p=1617817 Model / reference: https://www.prestashop.com/forums/topic/334550-solved-remove-model-from-product-page-reference/ Succes Bij model werd alleen het woordje model weggehaald en niet heel de regel Condition werkt helemaal niet Link to comment Share on other sites More sharing options...
Erik G Posted May 20, 2015 Share Posted May 20, 2015 Bij gebruik van het default theme (ps versie 1.6.0.9) betreft het onderstaande code in product.tpl <p id="product_reference"{if empty($product->reference) || !$product->reference} style="display: none;"{/if}> <label>{l s='Model'} </label> <span class="editable" itemprop="sku">{if !isset($groups)}{$product->reference|escape:'html':'UTF-8'}{/if}</span> </p> {if $product->condition} <p id="product_condition"> <label>{l s='Condition'} </label> {if $product->condition == 'new'} <link itemprop="itemCondition" href="http://schema.org/NewCondition"/> <span class="editable">{l s='New'}</span> {elseif $product->condition == 'used'} <link itemprop="itemCondition" href="http://schema.org/UsedCondition"/> <span class="editable">{l s='Used'}</span> {elseif $product->condition == 'refurbished'} <link itemprop="itemCondition" href="http://schema.org/RefurbishedCondition"/> <span class="editable">{l s='Refurbished'}</span> {/if} </p> Deze code uitschakelen of verwijderen. Aan jou de keuze. Andere optie is om de product.CSS regels aan te passen 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