
Originally Posted by
coopco
I would really like to display the Nett Price in facebook. The price that is displayed comes from price_sorter in the database, but the nett price is not stored in the database (or I can't find it).
hi i got this to work with the zen_get_products_actual_price($products_id) i did have to use the substring to get rid of the zeros
not sure what way this would work with taxes etc but give it a try
PHP Code:
$price = substr(zen_get_products_actual_price($products_id),0,-2);
bn