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 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 pardebits on September 3, 2020, 14:55Sorry!! the FTP Now works in TEST HOSTING
Sorry!! the FTP Now works in TEST HOSTING
Quote from Pablo Borysenco on September 3, 2020, 16:27Hello
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
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
Quote from pardebits on September 3, 2020, 16:52Hi 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!
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!
Quote from Pablo Borysenco on September 4, 2020, 10:57Hello
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
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
Quote from pardebits on September 4, 2020, 11:07Hi, 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!
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!
Quote from Pablo Borysenco on September 4, 2020, 11:11because your plugin had a total compatibilty with the plugin crowdfunding. - where did you find such information? Please drop me the link
because your plugin had a total compatibilty with the plugin crowdfunding. - where did you find such information? Please drop me the link
Quote from pardebits on September 4, 2020, 11:17
Quote from Pablo Borysenco on September 4, 2020, 13:19https://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
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
Quote from pardebits on September 4, 2020, 15:18Ok... 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!
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!
Quote from Pablo Borysenco on September 4, 2020, 16:13I already passed this to the developer.
I already passed this to the developer.
Quote from pardebits on September 21, 2020, 17:47Hii! Any news??
Thanks!
Hii! Any news??
Thanks!
Quote from Pablo Borysenco on September 22, 2020, 09:56Hello
The developer will check it out this Thursday
Hello
The developer will check it out this Thursday
Quote from pardebits on September 29, 2020, 10:42Yes I checked and it works. The TEST environment.
What happened?
Yes I checked and it works. The TEST environment.
What happened?
Quote from Pablo Borysenco on September 29, 2020, 12:11We didn't do anything. Perhaps this is a conflict with another plugin (for example, discounts) or cache
We didn't do anything. Perhaps this is a conflict with another plugin (for example, discounts) or cache
Quote from pardebits on September 29, 2020, 12:13Sorry! 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!
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!
Quote from Pablo Borysenco on September 30, 2020, 10:25Hello
Ok! I will write to you as soon as we get the result
Hello
Ok! I will write to you as soon as we get the result
Quote from Pablo Borysenco on October 1, 2020, 15:27Hello
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
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
Quote from pardebits on October 1, 2020, 15:39Hi good afternoon.
We fix the server thing:
https://test.dimefunding.com/product/ayuda-a-united-brothers-a-renovar-su-tecnologia/
thanks!
Hi good afternoon.
We fix the server thing:
https://test.dimefunding.com/product/ayuda-a-united-brothers-a-renovar-su-tecnologia/
thanks!
Quote from Pablo Borysenco on October 1, 2020, 17:06It looks like everything is working correctly- https://c2n.me/49hHtjY
It looks like everything is working correctly- https://c2n.me/49hHtjY