Rnb not showing currecny change in product 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 pleaseIf 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.
Quote from Julian on November 9, 2023, 21:37But it is working correcly in cart and check out page
If there is anythin I could do to help just let me know.
Hello.
I am right now using the FOX currency plugin and it is almost working.
I have encounter only a problem.
The currency change correctly in the cart page and in the check out page. But it is not displaying correctly in the product page.
Is there something that I am missing? If you could be of any help I really appreciate it.
Thank you in advanced.

But it is working correcly in cart and check out page


If there is anythin I could do to help just let me know.
Quote from Pablo Borysenco on November 10, 2023, 11:13Hello
This is incompatibility with third party plugins.
third-party plugin uses custom price display (instead of the standard product price)
Please read this - https://currency-switcher.com/woocs-labs
Hello
This is incompatibility with third party plugins.
third-party plugin uses custom price display (instead of the standard product price)
Please read this - https://currency-switcher.com/woocs-labs
Quote from Julian on December 5, 2023, 22:02Thanks for answering.
Isnt this the same issue as here: https://pluginus.net/support/topic/fox-labs-woocommerce-rnb-plugin-price-does-not-change-totally/?
Sorry if I misunderstund something.
I am haveing troubles know where to put the code you show in that post.
Thanks for answering.
Isnt this the same issue as here: https://pluginus.net/support/topic/fox-labs-woocommerce-rnb-plugin-price-does-not-change-totally/?
Sorry if I misunderstund something.
I am haveing troubles know where to put the code you show in that post.
Quote from Pablo Borysenco on December 6, 2023, 10:37Hello
Ok! Are you using this plugin? https://codecanyon.net/item/rnb-woocommerce-rental-booking-system/14835145
If yes and if you have no programming experience. You can give me ftp+wp-admin access - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134615.png - I will add this code to a third party plugin
Hello
Ok! Are you using this plugin? https://codecanyon.net/item/rnb-woocommerce-rental-booking-system/14835145
If yes and if you have no programming experience. You can give me ftp+wp-admin access - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134615.png - I will add this code to a third party plugin
Quote from Julian on December 6, 2023, 19:08Hello Pablo, thank you for you answer.
I have give you the details as you show me.
Tell me if anything else is needed.
Thank you.
Hello Pablo, thank you for you answer.
I have give you the details as you show me.
Tell me if anything else is needed.
Thank you.
Quote from Pablo Borysenco on December 7, 2023, 12:14Hello
Please add wp-admin access - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
Hello
Please add wp-admin access - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
Quote from Julian on December 7, 2023, 18:26Thank you for your early respond!
I have added what you ask for.
Anything else I will be right here. Thank you.
Thank you for your early respond!
I have added what you ask for.
Anything else I will be right here. Thank you.
Quote from Pablo Borysenco on December 8, 2023, 11:00Hello
Ok! I'll write to you as soon as we get the result
Hello
Ok! I'll write to you as soon as we get the result
Quote from Julian on December 8, 2023, 18:37Thank you Pablo for taking the time to check it!
Thank you Pablo for taking the time to check it!
Quote from Pablo Borysenco on December 11, 2023, 10:54Hello
Our developer will do it this Friday
Hello
Our developer will do it this Friday
Quote from Pablo Borysenco on December 15, 2023, 17:41Hello
Please do a test
Hello
Please do a test
Quote from Julian on December 15, 2023, 18:23Thank you so much Pablo.
I see that most things are working correctly!!!! Amazing work excelente!
I see that it is working correctly but sometimes it seems to show the incorrect.
Here in the product page it is put in USD but shows in ARS:
And also in that image the price that shows $7, isnt changing at all.
If there is anything I can do to help you let me know.
And thank you very much!
Thank you so much Pablo.
I see that most things are working correctly!!!! Amazing work excelente!
I see that it is working correctly but sometimes it seems to show the incorrect.
Here in the product page it is put in USD but shows in ARS:

And also in that image the price that shows $7, isnt changing at all.
If there is anything I can do to help you let me know.
And thank you very much!
Quote from Pablo Borysenco on December 18, 2023, 13:27Hello
Ok! I will check it
Hello
Ok! I will check it
Quote from Julian on December 18, 2023, 18:22Thank you Pablo!
Any information you need just tell me.
Thank you Pablo!
Any information you need just tell me.
Quote from Pablo Borysenco on December 19, 2023, 12:16Ok! Our worker will check this on Friday
Ok! Our worker will check this on Friday
Quote from Julian on December 20, 2023, 02:13Thank you Pablo. I will be here.
Thank you Pablo. I will be here.
Quote from Pablo Borysenco on December 22, 2023, 18:59Hello
I disabled the caching plugin and this problem no longer occurred.
But we still found incompatibility with this third-party plugin
I added this code in functions.php
add_filter('redq_rnb_cat_categories', function($rnb_categories){foreach ($rnb_categories as $key => $category) {if (isset($category['cost'] )) {if (class_exists('WOOCS') AND $rnb_categories[$key]['cost'] > 0) {global $WOOCS;$rnb_categories[$key]['cost'] = $WOOCS->woocs_exchange_value($rnb_categories[$key]['cost']);}}}return $rnb_categories;});add_filter('redq_payable_resources', function($resources){foreach ($resources as $key => $resours) {if (isset($resours['cost'] )) {if (class_exists('WOOCS') AND $resours[$key]['cost'] > 0) {global $WOOCS;$resources[$key]['cost'] = $WOOCS->woocs_exchange_value($resources[$key]['cost']);}}}return $resources;});add_filter('redq_pickup_locations', function($pickup_locations){foreach ($pickup_locations as $key => $location) {if (isset($location['cost'] )) {if (class_exists('WOOCS') AND $pickup_locations[$key]['cost'] > 0) {global $WOOCS;$pickup_locations[$key]['cost'] = $WOOCS->woocs_exchange_value($pickup_locations[$key]['cost']);}}}return $pickup_locations;});add_filter('redq_dropoff_locations', function($dropoff_locations){foreach ($dropoff_locations as $key => $location) {if (isset($location['cost'] )) {if (class_exists('WOOCS') AND $dropoff_locations[$key]['cost'] > 0) {global $WOOCS;$dropoff_locations[$key]['cost'] = $WOOCS->woocs_exchange_value($dropoff_locations[$key]['cost']);}}}return $dropoff_locations;});add_filter('redq_payable_person', function($persons){foreach ($persons as $key => $person) {if (isset($person['cost'] )) {if (class_exists('WOOCS')) {global $WOOCS;if ( $persons[$key]['person_cost'] > 0 ) {$persons[$key]['person_cost'] = $WOOCS->woocs_exchange_value($persons[$key]['person_cost']);}if ( $persons[$key]['person_hourly_cost'] > 0 ) {$persons[$key]['person_hourly_cost'] = $WOOCS->woocs_exchange_value($persons[$key]['person_hourly_cost']);}}}}return $persons;});add_filter('redq_payable_security_deposite', function($security_deposites){foreach ($security_deposites as $key => $deposite) {if (isset($person['cost'] )) {if (class_exists('WOOCS')) {global $WOOCS;if ( $security_deposites[$key]['security_deposite_cost'] > 0 ) {$security_deposites[$key]['security_deposite_cost'] = $WOOCS->woocs_exchange_value($security_deposites[$key]['security_deposite_cost']);}if ( $security_deposites[$key]['security_deposite_hourly_cost'] > 0 ) {$security_deposites[$key]['security_deposite_hourly_cost'] = $WOOCS->woocs_exchange_value($security_deposites[$key]['security_deposite_hourly_cost']);}}}}return $security_deposites;});But unfortunately this did not solve all the incompatibilities.We simply don't have the resources to continue working on compatibility with this third-party plugin. I advise you to look for another rent plugin
Hello
I disabled the caching plugin and this problem no longer occurred.
But we still found incompatibility with this third-party plugin
I added this code in functions.php
Hello.
I am right now using the FOX currency plugin and it is almost working.
I have encounter only a problem.
The currency change correctly in the cart page and in the check out page. But it is not displaying correctly in the product page.
Is there something that I am missing? If you could be of any help I really appreciate it.
Thank you in advanced.