Zen Cart Logo

include price with vat

Views: 3,410

Results 1 to 9 of 9
13 Oct 2008, 10:28 AM
#1
matthewreece avatar

matthewreece

New Zenner

Join Date:
Aug 2008
Posts:
24
Plugin Contributions:
0

include price with vat

I have installeed the following
include_and_exclude_tax_in_prices_nettgross_1-1-0
Below is how my product prices are now showing

£25.00 PRICE_EX_TAX_TEXT
£29.38 PRICE_INC_TAX_TEXT

How do i edit the text after price to show just
including vat
excluding vat

Thanks in advance

27 Jan 2011, 11:03 PM
#2
gsm_secure avatar

gsm_secure

New Zenner

Join Date:
Jan 2011
Posts:
2
Plugin Contributions:
0

Re: include price with vat

Hi Matthew

Did you manage to sort this?

I have the same..

22 Feb 2011, 9:04 PM
#3
polik avatar

polik

New Zenner

Join Date:
Oct 2010
Location:
Meath, Ireland
Posts:
25
Plugin Contributions:
0

Re: include price with vat

GSM-Secure:

Hi Matthew

Did you manage to sort this?

I have the same..

Hi,

Gentlemen please download "Include and Exclude Tax in Prices (Nett/Gross)" V 1.23a. If you using ZC 1.39 should work - check https://www.ledway.ie ( sorry but I f*** with template). Andrew done great work.

12 Aug 2014, 4:06 PM
#4
petercannon avatar

petercannon

New Zenner

Join Date:
Aug 2014
Location:
Cannock, United Kingdom
Posts:
2
Plugin Contributions:
0

Re: include price with vat

Is this problem still not solved then? I've just installed 1.5a and cannot get the text to change from PRICE_INC_TAX_TEXT to Inc VAT.

12 Aug 2014, 4:21 PM
#5
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: include price with vat

petercannon:

Is this problem still not solved then? I've just installed 1.5a and cannot get the text to change from PRICE_INC_TAX_TEXT to Inc VAT.

Missing a language define for the constant.

Off the top of my head, I'm not sure which file would be best suited to have it, but need something like:

define('PRICE_INC_TAX_TEXT','Inc VAT');

Possibly in includes/languages/YOUR_TEMPLATE/english.php

13 Aug 2014, 8:57 AM
#6
petercannon avatar

petercannon

New Zenner

Join Date:
Aug 2014
Location:
Cannock, United Kingdom
Posts:
2
Plugin Contributions:
0

Re: include price with vat

mc12345678:

Missing a language define for the constant.

Off the top of my head, I'm not sure which file would be best suited to have it, but need something like:

define('PRICE_INC_TAX_TEXT','Inc VAT');

> 
> Possibly in includes/languages/YOUR_TEMPLATE/english.php

What a clever bunny you are! I use the pure_blue_free template so your advice was correct. Thanks

// constants for use in zen_prev_next_display function
define('PRICE_INC_TAX_TEXT','Inc VAT');
define('PRICE_EX_TAX_TEXT','Ex VAT');


And includes\languages\english\extra_definitions\custom\IncExTaxMod_defines.php

// Tax/VAT headings !!!
define('Ex VAT');
define('Inc VAT');
define('VAT Free');


Solved.
22 Aug 2014, 1:50 AM
#7
christinejoe322 avatar

christinejoe322

New Zenner

Join Date:
Aug 2014
Location:
US
Posts:
5
Plugin Contributions:
0

Re: include price with vat

This problem still not solved then? I've just installed 1.5a and cannot get the text to change from PRICE_INC_TAX_TEXT to Inc VAT.

22 Aug 2014, 3:40 AM
#8
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: include price with vat

Christinejoe322:

This problem still not solved then? I've just installed 1.5a and cannot get the text to change from PRICE_INC_TAX_TEXT to Inc VAT.

I don't mean to be rrude or insensitive, but if the fact that a few language defines are missing from where they might be expected is hardly a "broken" product. If not mistaken the solution to the issue is identified above, or so it seemed by the response.

31 Aug 2014, 11:37 PM
#9
christinejoe322 avatar

christinejoe322

New Zenner

Join Date:
Aug 2014
Location:
US
Posts:
5
Plugin Contributions:
0

Re: include price with vat

Thanks MC.. :mellow: