How to Set Default Tax in Magento

defaulttax

I only have one TAX option but when entering new product I'm forced to set the TAX option.

Is there a way set a TAX value to default?

Best Answer

The easiest way is changing a value in Magento Database

UPDATE `eav_attribute` SET `default_value` = '2' WHERE `eav_attribute`.`attribute_code`='tax_class_id';

By default is set as NULL So change default_value = 'Your value tax'

If you inspect Taxes Dropdrop you will find Tax Value

enter image description here

Related Topic