Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter longh25

    (@longh25)

    Hi,

    Thank you for your response. I am using Woocommerce Shipping and Tax too and the price entered is excluded tax but included for Switzerland.

    The problem is I just want to change how to show the tax VAT 7.7% is already in the price (only for Switzerland) at the checkout and in invoice.

    So I think if you know a couple of codes to change how the tax is displayed (ex. tax included for Switzerland) at the checkout base on country (or pricing zone), that will be perfect.

    You can use this code

    add_action( 'woocommerce_single_product_summary', 'dev_designs_show_sku', 5 );
    function dev_designs_show_sku(){
        global $product;
        echo 'SKU: ' . $product->get_sku();
    }
Viewing 2 replies - 1 through 2 (of 2 total)