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

CURRENCY SWITCHER NOT WORKING WITH WP CROWDFUNDING PLUGIN PLEASE HELP ME (another guy)

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.
12

Sorry!! the FTP Now works in TEST HOSTING

Hello

payments are only possible in one currency. Because a third party plugin takes the order amount directly from the database - https://c2n.me/48XDdS1.png

in  functions.php add code:

add_filter('wp_head',function(){
if(is_checkout() AND class_exists('WOOCS')){
global $WOOCS;
$WOOCS->reset_currency();
}
});

In  file - \wp-content\plugins\wp-crowdfunding\wpcftemplate\woocommerce\basic\include\fund-raised.php change code - https://c2n.me/48XDCP8.png

$amount=wpcf_function()->total_goal(get_the_ID());
$raised =wpcf_function()->fund_raised();
if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$amount = $WOOCS->woocs_exchange_value(floatval($amount));
$raised = $WOOCS->woocs_exchange_value(floatval($raised));
}
}

in file - wp-content\plugins\wp-crowdfunding\includes\woocommerce\Woocommerce.php - add  code - https://c2n.me/48XDIAI.png

if (class_exists('WOOCS')) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$conversion_rate = $currencies[$WOOCS->current_currency]['rate'];
$donate_amount = $donate_amount / $conversion_rate;
}
}

and  do  test

My  test - https://c2n.me/48XDLRC

 

 

Hi thanks for the reply.

So in previous version of plugin crowdfunding, the order amount not take from Database?

I don't understand why now is not possible to pay with another currency...

What things we have to do to allow this?

Thanks!

 

Hello

the order amount not take from Database? - maybe, unfortunately I have no such information

I don't understand why now is not possible to pay with another currency... -  Because a third-party plugin takes the amount of orders from the database, excluding the order currency

What things we have to do to allow this? -  You can contact the author of the third-party plugin and ask him to change this code

Hi, I dont understand.

I bought your plugin because your plugin had a full compatibilty with the plugin crowdfunding.

So, before was 100% working both plugin and now not because they update the plugin?

I talk with the team and we will see next action.

Thanks!

 

 because your plugin had a total compatibilty with the plugin crowdfunding. - where did you find such information? Please  drop  me  the link

https://currency-switcher.com/wp-crowdfunding/

https://currency-switcher.com/wp-crowdfunding/ - this is a link to the code for adaptation, We have not announced anywhere that these are fully compatible plugins

This piece of code completely changes the database query - https://c2n.me/48YgxEJ.png - there is a possibility that it might work

Ok... But if you see your webpage with code adaptacion, of course you think that code make a fully compatible with other plugin. But ok, don't worry.

And the code of change the database query, you say that maybe works. But your company did this code right? The developer can check if is work with the last version?

Thanks a lot!

I already passed this to the developer.

Hii! Any news??

Thanks!

Hello

The developer will check it out this Thursday

Yes I checked and it works. The TEST environment.

What happened?

 

 

We didn't do anything.  Perhaps this is a conflict with another plugin (for example, discounts) or cache

Sorry! no no. Wow I complety had a mistake! I read a message from you from weeks ago about FTP doesn't work and I thought that the message was from yesterday... Sorry!

Will be nice if your develope can check.

I try to remove my previous message.

Sorry!

 

Hello

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

Hello

we added adaptation code to query the database

but we can't check it - https://clip2net.com/s/49hAaTL - your site is not stable.  Perhaps some of your developers are currently working on a test site

Hi good afternoon.

We fix the server thing:

https://test.dimefunding.com/product/ayuda-a-united-brothers-a-renovar-su-tecnologia/

 

thanks!

It looks like everything is working correctly- https://c2n.me/49hHtjY

12