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

Show Fixed prices GeoIP

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 want to do something like this.

I want to set fixed prices in various currencies with GeoIP for every product, but I know it's take same time so I don't want change any prices and base currency until I don't set fixed prices for specific product or all products.

 

In another words:

  1. If fixed price for geoip is set - show this price
  2. If fixed price is not set - show base price and currency

 

How can I do this?

Hello

If a fixed price is not set / empty plugin will show the base price.

Please  watch  videos - https://currency-switcher.com/video-tutorials#video_PZugTH80-Eo AND https://currency-switcher.com/video-tutorials#video_YHDQZG8GS6w AND  https://currency-switcher.com/video-tutorials#video_Yn7QQaJ21aQ

Hello I have another problem.

I see the fixed price is show only from Germany. For example when I change by VPN for United States I see price in base currency. The currency symbol is not showing

 

The problem is: only for germany i see the price is show correctly. Spain or United States i see indyvidual value which i set in base currency

 

See my config:

 

 

And how to round up price to 9?

For example: 144 -> 149 (without cents)

Hello

Please  drop  me  exact  link  to the  issue and  wp-admin  access

And how to round up price to 9? - https://currency-switcher.com/hook/woocs_raw_woocommerce_price/  AND  https://currency-switcher.com/hook/woocs_woocommerce_variation_prices/

 

Hello,

It seems that geolocalization is working but we have problem with rounding prices:

For now it's rounding all prices in all currencies. But we don't want round price in BASE CURRENCY (we want round price in all OTHER CURRENCIES). How we can do this?

we use that snippet:

add_filter('woocs_raw_woocommerce_price', function($price) {
return round($price + 5, -1)-1;
});

Hello

Try  this  code

add_filter('woocs_raw_woocommerce_price', function($price) {
global $WOOCS;
if($WOOCS->current_currency!=$WOOCS->default_currency){
    return round($price + 5, -1)-1;
}
return $price;
});