dinoroadster Posted January 15, 2014 Share Posted January 15, 2014 Hello, I am posting again regarding this topic, because the last one has been marked as solved but actually there is not all the answers. I would to have more details on two points : First, what are the exact fields name that we can add to the product page : Brand reference = {$product->supplier_reference}EAN13 = {$product->ean13} Brand = ?? Feature (height, ...) = ?? Second, where should we modify the product.tpl and is it only the .tpl to modify, or also the .css ? Here is the code i modify in the product.tpl <p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}> <label>{l s='Reference :'} </label> <span class="editable">{$product->reference|escape:'htmlall':'UTF-8'}</span> </p> <p id="manufacturer" {if isset($groups) OR !$product->reference}style="display: none;"{/if}> <label>{l s='Brand :'} </label> <span class="editable">{$product->manufacturer|escape:'htmlall':'UTF-8'}</span> </p> <p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}> <label>{l s='Brand reference :'} </label> <span class="editable">{$product->supplier_reference|escape:'htmlall':'UTF-8'}</span> </p> <p id="product_reference" {if isset($groups) OR !$product->reference}style="display: none;"{/if}> <label>{l s='Package :'} </label> <span class="editable">{$product->feature_height|escape:'htmlall':'UTF-8'}</span> </p> But as you can see, the informations doesn't show on my website product page : Thanks for your help 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