Page 1 of 1

How to have price as "£XX.XX Inc delivery"

Posted: Fri Apr 02, 2010 2:19 pm
by slinkie172
Hi Folks,

I want to add "Inc delivery" to the end of every price on my website (on the home page and the product page).

How do I do this?

Thanks

Matt

Re: How to have price as "£XX.XX Inc delivery"

Posted: Fri Apr 02, 2010 7:14 pm
by Qphoria
1. EDIT: system/library/currency.php

2. FIND:

Code: Select all

return $string;
3. BEFORE, ADD:

Code: Select all

		$trace = debug_backtrace();
		if (isset($trace[1]['class']) && strpos($trace[1]['class'], 'Controller') !== false) { 
			$string = ($string . " (inc delivery)");
		}