• Resolved bigmuffx

    (@bigmuffx)


    Hi,
    I recently installed version 2.3.11 but I when I put the correct tax settings as I did in another website I made with woocommerce 2.3.10 the tax are not visible on checkout page neither in the cart page or calculated as zero. I tried to update aliquotes with no results. Shop base address is correctly set.
    How to fix this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need to add this table in you Sql database

    CREATE TABLE IF NOT EXISTS wp_woocommerce_tax_rate_locations (
    location_id bigint(20) NOT NULL,
    location_code varchar(255) NOT NULL,
    tax_rate_id bigint(20) NOT NULL,
    location_type varchar(40) NOT NULL
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

    that should do the work! The thing that can change depends on your installation is wp_woocommerce_tax_rate_locations could also be someting like this test0_wp_woocommerce_tax_rate_locations

    Thread Starter bigmuffx

    (@bigmuffx)

    Working perfectly, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tax not showed in the checkout’ is closed to new replies.