Jump to content

Conditie en model verwijderen op productpagina


Peter Pastoor

Recommended Posts

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 by Erik G (see edit history)
Link to comment
Share on other sites

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 :D

 

Condition werkt helemaal niet :(

Link to comment
Share on other sites

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...