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

The currencies show 0.00 when there is no price

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, im running into a bit of an issue. I have a few products where there is no price. When im in my default currency, it shows read more, which is how its supposed to be. When I switch to another currency, the same product shows 0.00 in price, and add to cart, instead of Read More. How can I fix this? it needs to show read more wherever there is no price. Please check the screenshots:

 

Screenshot 1: https://file.io/6KIN5wu3KvXf

this is how it is in the default currency, which is read more when it has no price

Screenshot 2: https://file.io/rqvK99c58ZVC

this is how it is when I change the currency to another. on the same product, it shows 0.00 ريال, and it shows Add to cart.

The link of the website is: https://blumenkids.digitalbowaba.com

 

Hello

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

Hello,  I tried it out what it says in the article, but the price is still showing as 0.00 plus it now shows 0.00 in the default currency aswell. Also, when clicked on the product, there should be no button about read more in the single product page, but it shows, when I make it external/affiliate product. Kindly let me know how to fix this

Screenshot 1: https://file.io/h1dEYX6av4l6

screenshot 2: https://file.io/qSd01N6xe2ot

screenshot 3: https://file.io/EDtmRD2PRRx1

screenshot 4: https://file.io/6SMX2irFu3gz (it shows read more inside the product and details page)

Hello

Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png and  FTP+wp-admin access - https://share.pluginus.net/image/i20210618130637.png

Hello,

Done, please check.

Thanks

Hello

Please  add FTP access - https://share.pluginus.net/image/i20210618130558.png ->https://share.pluginus.net/image/i20210618130637.png

Hello, Please check now. I added it

Thanks

 

Hello

Please  check your FTP access

please check now. ive updated it

 

Hello

Now FTP access works, but access to the user's folder. Please change this in your FTP account settings

Hello

im not sure what you mean. Kindly guide me what do you want to change? I cant find in the settings to unlock the user’s folder

Thanks

 

Hello

You better contact your hosting support.

There are different settings and hosting control panels, and unfortunately I don’t know in your case this field is located.

Remove all changes that are described in this article -  https://currency-switcher.com/make-product-not-purchasable-avoid-free-price-text

You can try  in  file  - wp-content\plugins\woocommerce-currency-switcher\classes\woocs.php

add  code - https://share.pluginus.net/image/i20220620140612.png

if ($price_html =="") {
return"";
}

change  this line - https://share.pluginus.net/image/i20220620141657.png

$price = apply_filters('formatted_woocommerce_price', number_format(floatval($price), $decimals, $decimal_separator, $thousand_separator), $price, $decimals, $decimal_separator, $thousand_separator);

 

add in  functions.php

add_filter('woocs_raw_woocommerce_price', function($price){

if ($price == 0) {
$price ="";
}

return $price;
});

Please  do a test