Hi Edda,
You need to find out what is available in the "$new_products" array.
I would suggest contacting FTS for this information.
Alternatively, you could try and print the array inside the PHP code.
For example,
Code:
print_r($new_products);
If you see a value that appears to look like a price, you could then use it in your template.
Maybe something similar to:
Code:
{$new_products[i].product_price}
I hope this helps.