I recently added sales tax to my products. The way it is working is the tax is deducted from the item price, the tax is added back in, and the item price is achieved as a total price.
The way it is now -
(item price - sales tax) + sales tax = total price
I want the sales tax to be added to the item price and increase the total price.
It should work this way instead -
item price + sales tax = total price.
What do I need to change?
Sales tax problem
-
- Phoca Professional
- Posts: 225
- Joined: 31 Dec 2020, 09:46
Re: Sales tax problem
in phoca cart configuration you need to configure how to calculate the price.
so the price on a product you need to tell phoca cart if its incl. or excl tax.
so the price on a product you need to tell phoca cart if its incl. or excl tax.
- jrjr
- Phoca Professional
- Posts: 114
- Joined: 30 Nov 2018, 23:56
Re: Sales tax problem
Ahhh yes, thank you. Didn't think to look under options. Found it!
Do you have an idea how to hide the sales tax amount on an item until checkout? It is displayed in item view at the moment. I don't seem to find a config for that.
-
- Phoca Professional
- Posts: 225
- Joined: 31 Dec 2020, 09:46
Re: Sales tax problem
Do you want to display the products in de shop with price including tax.
On checkout page show product price without tax, tax amount and total amount?
On checkout page show product price without tax, tax amount and total amount?
- jrjr
- Phoca Professional
- Posts: 114
- Joined: 30 Nov 2018, 23:56
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Sales tax problem
Hi, the tax can be disablec completely, but then it is completely hidden in all parts.
So the easiest way to hide other parts like tax or netto price is to use CSS and standard "display: none" parameter. All parts have the CSS classes so this can be the simplest and fastest way.
Jan
So the easiest way to hide other parts like tax or netto price is to use CSS and standard "display: none" parameter. All parts have the CSS classes so this can be the simplest and fastest way.
Jan
If you find Phoca extensions useful, please support the project
- jrjr
- Phoca Professional
- Posts: 114
- Joined: 30 Nov 2018, 23:56
Re: Sales tax problem
I really don't know what you mean.... All parts have the CSS classes? Where do I find these?Jan wrote: ↑28 Mar 2021, 20:38 Hi, the tax can be disablec completely, but then it is completely hidden in all parts.
So the easiest way to hide other parts like tax or netto price is to use CSS and standard "display: none" parameter. All parts have the CSS classes so this can be the simplest and fastest way.
Jan
- Jan
- Phoca Hero
- Posts: 48386
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Sales tax problem
Each price item (netto, brutto, tax) has own CSS class, so you can hide only the item you want, e.g. the tax and netto part.
Do you have the link to the page, where you want to hide the tax?
Jan
Do you have the link to the page, where you want to hide the tax?
Jan
If you find Phoca extensions useful, please support the project
- jrjr
- Phoca Professional
- Posts: 114
- Joined: 30 Nov 2018, 23:56
Re: Sales tax problem
Here's a link. I would like tax to only appear at checkout. Seems bothersome to remind buyers they have to pay tax until such time as they have to.
https://lakeshoreleather.com/our-produc ... tore/2-owb
https://lakeshoreleather.com/our-produc ... tore/2-owb
-
- Phoca Hero
- Posts: 2818
- Joined: 28 Nov 2010, 17:20
Re: Sales tax problem
Hi,
If you mean not to show the text of: Price (excl. tax) plus the price, you could try to hide it with foll. CSS Code:
Christine
If you mean not to show the text of: Price (excl. tax) plus the price, you could try to hide it with foll. CSS Code:
Kind regards.ph-price-txt.ph-price-netto-txt.ph-standard-txt {
display: none;
}
.ph-price-netto.ph-standard {
display: none;
}
Christine