fatback1975 Posted October 18, 2005 Posted October 18, 2005 Hi, My store is set up to display prices excluding tax (Australian GST). I would like to display the text 'plus gst' after the price to let customers that the price excludes tax. I haven't been able to find a setting in admin to do this, but spotted the feature on this store. Any help would be greatly appreciated.
seank123 Posted October 18, 2005 Posted October 18, 2005 Try something like: In catalog/includes/classes/currencies.php look for: function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity); Change to to: function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity) . ' plus GST' ;
fatback1975 Posted October 18, 2005 Author Posted October 18, 2005 Try something like:In catalog/includes/classes/currencies.php look for: function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity); Change to to: function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity) . ' plus GST' ; That did the trick! Thanks very much for your help :D
Recommended Posts
Archived
This topic is now archived and is closed to further replies.