• Resolved michaelakub

    (@mikaelakub)


    Hi, I dont know if it is after last update but now is showing product price without VAT even when is set to show price with VAT. When I am in cart or checkout then it is showing correct. Please where can by problem? Thank you.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    I tried to replicate the issue on my site but was unable to do so. Just to verify, were the prices appearing including VAT before? If yes, have you made any recent changes to your site?

    Could you please share a screenshot of your tax settings? Also, ensure that the display price on the shop is set to include tax. You can check this by navigating to WooCommerce → Settings → Tax.

    You can use the following tool to capture and share a screenshot: https://snipboard.io.

    If you still face the issue, could you deactivate all plugins except WooCommerce and see if the problem persists? For more details on how to run a conflict test, please refer to this article:
    How to Test for Conflicts.

    Thank you!

    Thread Starter michaelakub

    (@mikaelakub)

    Hi, I found problem in this code:

    add_filter( ‘woocommerce_countries_allowed_countries’, ‘tk_wpml_no_checkout_switch’);

    function tk_wpml_no_checkout_switch($countries) {

    if (is_admin()) return $countries;

    if (ICL_LANGUAGE_CODE == ‘cs’) { unset($countries[‘SK’]); unset($countries[‘HU’]); unset($countries[‘PL’]); unset($countries[‘AT’]); unset($countries[‘RO’]); unset($countries[‘SI’]); unset($countries[‘HR’]);}

    if (ICL_LANGUAGE_CODE == ‘sk’) { unset($countries[‘CZ’]); unset($countries[‘HU’]); unset($countries[‘PL’]); unset($countries[‘RO’]); unset($countries[‘SI’]);unset($countries[‘AT’]); unset($countries[‘HR’]);}

    if (ICL_LANGUAGE_CODE == ‘hu’) { unset($countries[‘CZ’]); unset($countries[‘SK’]); unset($countries[‘PL’]); unset($countries[‘RO’]); unset($countries[‘SI’]); unset($countries[‘AT’]); unset($countries[‘HR’]);}

    if (ICL_LANGUAGE_CODE == ‘en’) { unset($countries[‘CZ’]); unset($countries[‘SK’]); unset($countries[‘PL’]); unset($countries[‘HU’]); }

    if (ICL_LANGUAGE_CODE == ‘pl’) { unset($countries[‘CZ’]); unset($countries[‘SK’]); unset($countries[‘HU’]); unset($countries[‘RO’]); unset($countries[‘SI’]); unset($countries[‘AT’]);unset($countries[‘HR’]);}

    return $countries;

    }

    Question is: how I can set the restriction for order czech people from czech version website.

    Plugin Support Moses M. (woo-hc)

    (@mosesmedh)

    Hi @mikaelakub,

    Question is: how I can set the restriction for order czech people from czech version website.

    This appears to be a new issue and not related to your original question in this thread. To keep things organized, please start a new topic for this matter so it can be addressed separately.

    By the way, have you managed to resolve the initial issue with the VAT not showing up?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.