user2217288
user2217288

Reputation: 547

prestashop 1.6 display quantity in product list

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 ?

Upvotes: 1

Views: 3198

Answers (2)

Paul - ébewè
Paul - ébewè

Reputation: 2243

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 }

Upvotes: 2

littleboy
littleboy

Reputation: 78

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}

Upvotes: 0

Related Questions