pow Posted June 27, 2012 Share Posted June 27, 2012 Hi, I just tried to display the EAN code of the attributes. But I dont know where the information is stored. I dumped $product. In the database it is stored at ps_product_attribute-> ean13 I even tried to find it at {foreach from=$groups key=id_attribute_group item=group} {$group.attributes|@print_r} {/foreach} No chance Link to comment Share on other sites More sharing options...
phrasespot Posted June 30, 2012 Share Posted June 30, 2012 $product->ean13 (if $product was passed as an object to the template) $product.ean13 or $product['ean13'] (if $product was passed as an array to the template) 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