
Got it, SO ******* happy with myself right now.
I've worked out how to format php output from zen cart to facebook and twitter. 
Look for this line:
Code:
$price = $products_price;
and edit to this:
Code:
$vat = .20;
$price = (number_format(( $products_price + $products_price * $vat), 2, '.', ''));
that sorts facebook.
if your using Autotweet as well
look for this line:
Code:
if ($showprice){ $message .= ' Only $' . $products_price . '.'; }
and edit to this:
Code:
if ($showprice){ $message .= ' Only £' . number_format(( $products_price + $products_price * $vat), 2, '.', '') . ' !'; }
That only tookm me two days, bring on the hard stuff.
Bookmarks