Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Diego

    (@daigo75)

    That field has been removed from the plugin because it’s no longer used. It was a draft of a feature that was not fully implemented. The column was left in the database for backward compatibility.

    If the column is missing from the database, then something prevented the EU VAT Assistant from creating it. You can add it manually by adding a column called tax_payable_to_country to the woocommerce_tax_rates table. The column type should be VARCHAR(200) (way large, but that’s the format it had at the beginning).

    Plugin Author Diego

    (@daigo75)

    Sample SQL statement, for reference:

    ALTER TABLE wp_woocommerce_tax_rates
    ADD COLUMN tax_payable_to_country VARCHAR(200)

    Note
    Replace the wp_ prefix in wp_woocommerce_tax_rates with the appropriate prefix.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘tax payable to country field missing’ is closed to new replies.