Magento 1.9 Hide Taxes in Checkout and Cart
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;
up vote
3
down vote
favorite
How can I hide taxes in Checkout and cart?
The taxes should be still calculated in total, but not shown to the customer
magento-1.9 taxes
add a comment |Â
up vote
3
down vote
favorite
How can I hide taxes in Checkout and cart?
The taxes should be still calculated in total, but not shown to the customer
magento-1.9 taxes
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
How can I hide taxes in Checkout and cart?
The taxes should be still calculated in total, but not shown to the customer
magento-1.9 taxes
How can I hide taxes in Checkout and cart?
The taxes should be still calculated in total, but not shown to the customer
magento-1.9 taxes
magento-1.9 taxes
edited Sep 19 at 15:37
asked Sep 19 at 14:58
Borche Glafche
899
899
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
3
down vote
Go to Admin > Configuration > Sales > Tax > Shopping Cart Display Settings
Change Display Full Tax Summary
to NO
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
add a comment |Â
up vote
2
down vote
In my knowledge you can hide this from Admin Panel, you need to go into
system -> configurations -> tax. Here you will find display settings from where you can hide it.
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
Go to Admin > Configuration > Sales > Tax > Shopping Cart Display Settings
Change Display Full Tax Summary
to NO
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
add a comment |Â
up vote
3
down vote
Go to Admin > Configuration > Sales > Tax > Shopping Cart Display Settings
Change Display Full Tax Summary
to NO
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
add a comment |Â
up vote
3
down vote
up vote
3
down vote
Go to Admin > Configuration > Sales > Tax > Shopping Cart Display Settings
Change Display Full Tax Summary
to NO
Go to Admin > Configuration > Sales > Tax > Shopping Cart Display Settings
Change Display Full Tax Summary
to NO
answered Sep 19 at 15:42
Bare Feet
1,2451626
1,2451626
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
add a comment |Â
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
still nothing, the tax is still there
â Borche Glafche
Sep 20 at 8:19
1
1
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
hymmm is there a chance that the theme is displaying the tax? Are there any settings for the theme in regards to this? Also try truing on template paths and find a phtml file that renders the prices and remove it from there :)
â Bare Feet
Sep 20 at 8:52
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
I found the phtml file, and this is how is displayed <?php echo $this->renderTotals(); ?>, and this is the function public function renderTotals($area = null, $colspan = 1) $html = ''; foreach($this->getTotals() as $total) if ($total->getArea() != $area && $area != -1) continue; $html .= $this->renderTotal($total, $area, $colspan); return $html; I dont know how to hide only the tax (this function also generates the the shiping cost and subtotal rows, which I want to keep
â Borche Glafche
Sep 20 at 13:29
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
Hymmm how about using css or jquery to hide this element?
â Bare Feet
Sep 20 at 13:47
add a comment |Â
up vote
2
down vote
In my knowledge you can hide this from Admin Panel, you need to go into
system -> configurations -> tax. Here you will find display settings from where you can hide it.
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
add a comment |Â
up vote
2
down vote
In my knowledge you can hide this from Admin Panel, you need to go into
system -> configurations -> tax. Here you will find display settings from where you can hide it.
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
add a comment |Â
up vote
2
down vote
up vote
2
down vote
In my knowledge you can hide this from Admin Panel, you need to go into
system -> configurations -> tax. Here you will find display settings from where you can hide it.
In my knowledge you can hide this from Admin Panel, you need to go into
system -> configurations -> tax. Here you will find display settings from where you can hide it.
edited Sep 19 at 16:29
Bare Feet
1,2451626
1,2451626
answered Sep 19 at 15:42
Shubham Khandelwal
4127
4127
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
add a comment |Â
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
you are correct ;) we answered almost the same time :) Upvote from me :D
â Bare Feet
Sep 19 at 15:49
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
The tax is still there..
â Borche Glafche
Sep 20 at 8:20
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f242909%2fmagento-1-9-hide-taxes-in-checkout-and-cart%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password