So I entered over 300 items into our store, and forgot to change tax class on quiet a few of them. Is there anyway to apply one tax class across all 300+ items?
yes.. you can run sql in phpMyAdmin and update column tax_class_id in your table products
for ex
QuoteUPDATE `ac_products`
SET
`tax_class_id` = '1000';
where 1000 - your tax_class_id (take it from url of tax edit page)
Or update your product with CSV export/import http://www.abantecart.com/ecommerce-documentation/admin-user-manual/system/data
Please backup before just in case...
Thanks guys. I went with Abolabo's suggestion. Worked like a charm.