Quote Originally Posted by Hobby Link View Post
Hi Jamie.

Installation V2 on 1.3.8a works a charm.

Quick question - what do I need to tweak in the code for the price to be quoted INCLUDING tax on facebook? Currently quotes excluding tax which is a bit backwards for the Aussie market. I can see it creating confusion!

I'm not too familiar with all the zencart tax stuff but I would imagine find:
PHP Code:
    $price $products_price
around line 101 of your update_product.php file and change it to:
PHP Code:
    $price $_POST['products_price_gross']; 
I think that should do it.