Hi,
There are several solutions, for most of them, they use a view override.
You have to override the view "checkout | cart" and edit the part which display the taxes.
In your case, you have the option "detailed_tax_display" activated.
if(bccomp($taxes,0,5)){
if($this->config->get('detailed_tax_display') && isset($this->full_total->prices[0]->taxes)){
foreach($this->full_total->prices[0]->taxes as $tax){
You can add a little check just after in order to skip specific taxes like:
if(bccomp($taxes,0,5)){
if($this->config->get('detailed_tax_display') && isset($this->full_total->prices[0]->taxes)){
foreach($this->full_total->prices[0]->taxes as $tax){
if($tax->tax_namekey == '4') continue;
At this moment, the tax with the namekey "4" will be skip (so, not display in the page).
Regards,