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

[WOOCS LABS] GiveWP Donation Plugin Support

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.

Hi there,

Your WOOCS plugin is the best on the market. There is no good currency conversion & multiple currencies for donation plugins on the market (I've tried everything I could find). GiveWP is one of the most utilized donation plugins, so if you integrate your software, many people will be looking to WOOCS.

Can you please add support for GiveWP:
https://wordpress.org/plugins/give/

Currently, my currency is set to ZAR (South Africa), and so people (from outside South Africa) cannot donate in USD.

Expected outcome:
1. GeoIP to work in GiveWP (Auto switch according to WOOCS GeoIP configuration).
2. GiveWP can support active WOOCS currencies.
3. Currency switcher and other shortcodes work with GiveWP.

Hello

Please  read  this - https://currency-switcher.com/woocs-labs

Please drop  me  wp-admin+FTP access  to your  test  site - https://share.pluginus.net/image/i20210618130558.png ->https://share.pluginus.net/image/i20210618130637.png

And describe in more detail all the incompatibilities

I will add this plugin to the adaptation queue

It looks like GiveWP is buggy, so I have an alternative if you want to look at it. It is called 'Name Your Price' from wooCommerce.

Everything is installed and can be seen here:
It works for my default currency ZAR, but when I test from USA and I add $100, it adds as ZAR100 and ends up as $6.6 in the cart:
https://testing.pkvss.com/product/donation-recurring/

GiveWP has a currency converter as well, and I have installed it. But GiveWP has the same problem as Name Your Price. $100 added becomes $6.4 on checkout. If you still want to check GiveWP, you can check it here:
https://coursely.co.za/give/

Found out that GiveWp are not going to resolve their bug, so 'Name Your Price' is the way to go!

Hello

Did  you read  this  - https://currency-switcher.com/name-your-price-woothemes

Yes, and I tried implementing it to the best of my ability, but Name Your Price has had too many changes. If I implement the current codefix everything is added as $0 to the cart.

I have the plugin called woocommerce-name-your-price-woocs-code-fix.zip in my plugin folder that contains the codefix in: Home \ directory \ testing.pkvss.com \ twk-wp-content \ plugins

Currently the untouched original version in installed, as the codefix does not work anymore.

Hello

OK!  I will add this plugin to the adaptation queue

Thank you so much Pablo!! Can you tell me how I will know if the update has been done? Will I receive a notification or is there a thread I must watch?

Hello

I will write to you as soon as we get the result

Hello

We've fixed the cart issue.

please make a test with minimum, maximum and suggested price

Describe in more detail if there is an incompatibility

It works! Thank you so much Pablo!

Would it be possible to share the file changes so we can apply fix if there is an update?

Hello

In  file - plugins\woocommerce-name-your-price\includes\class-wc-name-your-price-cart.php  - add code - https://share.pluginus.net/image/i20220617085120.png

if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->current_currency != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$posted_price = $posted_price / $currencies[$WOOCS->current_currency]['rate'];
}
}