1
votes

Hello I'm creating theme for prestashop 1.6. I want to display quantity and additional data like size on products listing (right beside add to basket).

Still i copy and paste part that display data from product but still cant see required data.

Any one have any idea were i have to change tpl to achieve this ?

2

2 Answers

2
votes

In product-list.tpl you can use {$product.quantity} for Quantity.

What do you mean by size ?
If you mean width, height and depth of the package size you can set in the Shipping tab, you can use {$product.width}, {$product.height } and {$product.depth }

0
votes

You have variables name in product.tpl Quantity of a product in product.tpl : $product->quantity

If you want to call it in product.tpl : {$product->quantity}