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

Price displays 0 in all other currencies than default currency

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.

When using GEO IP Pricing products that are sold out price still show a"0" in all other currencies than default. Also when only setting a GEO IP Price and not a default Woocommerce price for an available product, price also show"0" and"Add to cart" is possible.

Is it possible to have the price not display in other currencies when product is sold out and when only using GEO IP price?

Hello

Please  read  this -https://currency-switcher.com/make-product-not-purchasable-avoid-free-price-text/

Hi Pablo,

Thank you.

There were no change when changing to" External/Affiliate product" however it worked when changing to"variable product" but the text on the button now displayed"Select Options" for sold out products instead of"Read more".

I added this snippet in functions.php to update the text to"Read more".

remove_action( 'woocommerce_single_product_summary',
'woocommerce_template_single_add_to_cart', 30 );
add_action( 'woocommerce_single_product_summary',
'woocommerce_template_single_add_to_cart', 15 );
add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) {
global $product;
if ( $product->is_type( 'variable' ) ) {
$text = $product->is_purchasable() ? __( 'Read more', 'woocommerce' ) : __( 'Read more', 'woocommerce' );
}
return $text;
}, 10 );
I was still unable to display a unique price for a specific country and sold out for other countries. Might not work at all? I will use another solution for this..
Thank you for your help.

Hello

Read  this  - https://currency-switcher.com/using-geolocation-causes-problems-doesnt-seem-to-work-for-me/

If  no  luck  - Drop me  wp-admin  access  I will  check  it