PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

How to disable currency switch function on specific page?

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

URL: http://lianatcircle.com/customize/configure/307/

Due to the third party plugin compatible issue, I would like to default HKD in this page, would't let this page price to convert USD.

page-slug

config

Then I have tried to set"Disable on page" in WOOCS config, but it is still not working.

So how can I disable it correctly?

Thanks a lot.

Hello

Please  use - 307

thanks for help.

but the header menu display [woocs] shortcode, is it correct?

yes because you disabled the plugin and the shortcode doesn't work

You might be fine with a forced currency switch for this page

 

And could I set this page to display $HK only ? Even user switch to $US, but it is still display $HK.

hello

Try  to  add  in  functions.php

An  example - https://currency-switcher.com/force-currency-on-checkout-page

add_filter('wp_head',function(){    
    if(is_page('xxxx')){  //where  xxxx  id or slug of the  page
        global $WOOCS;
        $WOOCS->set_currency('HKD');
    }
});