Smarty is new to me, trying to mod a string in products_list.tpl
```php
{assign var=“min_qty” value=“min_qty_$obj_id
”}
{$smarty.capture.$min_qty}
```
I found that this code produces string:
Minimum quantity for “My Product” is 2.
Question: Where do I go where these smarty values are applied?
My goal to make it show:
Minimum quantity for this product is 2. (without including the product title)
Well, I traced it to product_data.tpl and changed
```php
{$lang.text_cart_min_qty|replace:“[product]”:$product.product|replace:“[quantity]”:$product.min_qty}.
```to
```php
{$lang.text_cart_min_qty|replace:“Minimum quantity”:“Minimum purchase quantity”|replace:“"[product]"”:“this product”|replace:“[quantity]”:$product.min_qty}.
```