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

Need help for cart and checkout notifacation.

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.

Hello, I just purchase this plugin, I want to show different currency depends on IP, but I need all visitors checkout using USD, not other currency.

I want to show the notification like this auto: All orders are processed in USD. While the content of your cart is currently displayed in EUR, you will checkout using USD at the most current exchange rate.

What should I do?

Hello

Place purchase code in secret are please (see button on the right side)

want to show different currency depends on IP - for this use tab 'GeoIP'

visitors checkout using USD - in tab Advanved set 'Is multiple allowed' to 'No'

I want to show the notification - for notifications you can use another plugin or place it directly on cart page, example:

<div class="woocommerce-notices-wrapper">
<div class="woocommerce-message" role="alert">Hello World</div>
</div>

 

 

Thank you! If I want to show this notice auto, when people use USD for payment, this notice will disappear, if people use CAD, this notice will show like this: While the content of your cart is currently displayed in CAD, you will checkout using USD at the most current exchange rate. CAD can be changed depends on the GeoIP.

Hello

It is possible to resolve in another way:

  • In file functions.php of the current wordpress theme add next code:
    add_shortcode('my_checkout_notice', function() {
    
    global $WOOCS;
    
    if (!$WOOCS->current_currency !== 'USD') {
    
    ?>
    
    <div class="woocommerce-notices-wrapper">
    
    <div class="woocommerce-message" role="alert">While the content of your cart is currently displayed in CAD, you will checkout using USD at the most current exchange rate</div>
    
    </div>
    
    <?php
    
    }
    
    });
  • useĀ  shortcode [my_checkout_notice] on cart page

Now if current currency is not USD user will see that notice