Hi, could you please update this plugin to be compatible with php 8.1 8.2 and 8.3 versions because it has quite a bit of outdated code
]]>I would like to know if it is possible for Coinpayments to inform Woocommerce that a payment has already been received and the order should be updated as “processing” or “complete”, so far Coinpayments only takes the payment and detects it and appears in my Coinpayments account balance but In Woocommerce it doesn’t change the status of the order, it stays in “pending payment” it doesn’t do anything as if the payment had never been received. What else do I need to configure?
]]>Please keep this plugin up to date. This is the only plugin I can use and it is outdated and it is probably not 100% secure. Please update it and keep it updated regularly. Please?
]]>I have installed Coinpayments plugin Version 1.0.14 and activated it but it is not working with WP 5.8.4 and Woopress 5.9.0. The Payment gateway does not appear on Woopress payment settings page, nor does setting come to add IPN and private key. Please investaget.
]]>Hi,
Can you tell me what the “WC requires at least” tag is for your plugin? I don’t see it anywhere in the header. We are looking to use this with Classic Commerce, which is a fork of WC 3.5.3.
Thanks.
I would like to know if it is possible for Coinpayments to inform Woocommerce that it has already received the payment and the order should be automatically updated to “Completed”, so far I have had to do it manually. Should I configure something additionally?
]]>Plugin hasn’t been updated in 12 months?
]]>PHP Notice: user_id was called incorrectly. Order properties should not be accessed directly. Backtrace: require(‘wp-blog-header.php’), wp, WP->main, WP->parse_request, do_action_ref_array(‘parse_request’), WP_Hook->do_action, WP_Hook->apply_filters, WC_API->handle_api_requests, do_action(‘woocommerce_api_wc_gateway_coinpayments’), WP_Hook->do_action, WP_Hook->apply_filters, WC_Gateway_Coinpayments->check_ipn_response, WC_Gateway_Coinpayments->successful_request, WC_Order->payment_complete, WC_Order->save, WC_Order->status_transition, do_action(‘woocommerce_order_status_completed’), WP_Hook->do_action, WP_Hook->apply_filters, change_role_on_purchase, WC_Abstract_Legacy_Order->__get, wc_doing_it_wrong Please see Debugging in WordPress for more information. (This message was added in version 3.0.) in /home/admin/domains/mydomain.io/public_html/wp-includes/functions.php on line 5167
]]>When Coinpayments completes its payment, it usually assigned the order to complete status. Unfortunately now, it assigns to processing.
Any way to make it assign the status complete?
Hello,
We use WooCommerce on our WordPress website in combination with your plugin:
https://www.ads-software.com/plugins/coinpayments-payment-gateway-for-woocommerce/#installation
It seems, your plugin does not support WooCommerce subscriptions, which is the recommended (and official) solution for managing subscriptions in WooCommerce.
We have contacted WooCommerce support about this and they advised us to contact the developers of the CoinPayments plugin and provide them the following link which might help to create the integration:
https://docs.woocommerce.com/document/subscriptions/develop/payment-gateway-integration/
Will you be working on this?
Regards
]]>hi there!
I wanted to ask you if you plan further updates of your plugin, here’s our case,
class-wc-gateway-coinpayments.php – this script,
in case of errors – it sends these emails using default php function without using the from field, that’s why we had emails firing from [email protected],
these emails go only to the admin email, users don’t see them,
but it’s the thing to fix, we can do that but we’ll need to change your plugin’s code and then keep track of your possible updates – so I thought it’d better to contact you about this issue.
Thank you,
Paul
developer from science.bio
]]>Hi Support,
In regard to Development:
Translate “CoinPayments.net Payment Gateway for WooCommerce” into your language.
https://translate.www.ads-software.com/projects/wp-plugins/coinpayments-payment-gateway-for-woocommerce
Error:
This plugin is not properly prepared for localization (View detailed logs on Slack). If you would like to translate this plugin, please contact the author.
Please, can you prepare plugin for localization? Thanks in advance.
]]>Personally, I have two means of payment from my store, one of them accepted cards and boleto bancário. When installing the coinpayments plugin I noticed that the payment with cryptomoeda has already been marked at the end of the purchase, I would like to leave the payment option with cryptomoeda in the background, how do I do this?
]]>I would like to display the crypto price along with USD on items in my shop.
Can I do that some how with this plugin?
]]>I confirmed that Merchant ID and IPN Secret match, but I keep getting Invalid IPN notices from my WooCommerce + Coinpayments setup. Do I need a value specified for IPN URL, or API keys?
Thanks for any assistance you can throw my way. It’s all working great except for that ??
]]>The Plugin don′tworks automaticly after bitcoin payments its only payment ono hold. I must make all manually for my virtuel products
Help pls
]]>Is this CoinPayments.net Woocommerce Gateway compatible with the Woo Subscriptions https://woocommerce.com/products/woocommerce-subscriptions/?
Thanks! Look forward to hearing your response, thanks.
]]>The plugin is using WooCommerce 2.x style properties which spams the error log with tons of warnings like so:
PHP message: billing_last_name was called incorrectly. Order properties should not be accessed directly. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, WC_AJAX::do_wc_ajax, do_action('wc_ajax_checkout'), WP_Hook->do_action, WP_Hook->apply_filters,WC_AJAX::checkout, WC_Checkout->process_checkout, WC_Checkout->process_order_payment, WC_Gateway_Coinpayments->process_payment, WC_Gateway_Coinpayments->generate_coinpayments_url, WC_Gateway_Coinpayments->get_coinpayments_args, WC_Abstract_Legacy_Order->__get, wc_doing_it_wrong. This message was added in version 3.0.
There is a repeat of each warning for each property accessed during a checkout: status, billing_country, billing_phone, id, order_key, billing_first_name, billing_last_name, billing_email
Directly accessing order properties is deprecated since Woo 3.0 and plugin authors are supposed to update their plugins to access order details via the get_*() methods instead.
Please shake the bitcoin cookie jar until you find some budget to fix your plugin. Its vociferous spamming of the error_log makes it hard to spot actual problems with your store.
]]>The plugin calls function get_woocommerce_currency()
to fetch what it should be the order currency. This is incorrect, and it only works in single-currency environments. In multi-currency configurations, function get_woocommerce_currency()
returns the active currency, which may or may not match the one from the order.
The fix is simple, and it involves calling $order->get_currency()
instead. I prepared a proof of concept patch for this purpose, which you can find here: https://www.filedropper.com/coinpayments-payment-gateway-for-woocommerce-patched (I couldn’t find a Git repository to send a pull request).
Note
The patch was tested with WooCommerce 3.0 and later. If you need to keep compatibility with WooCommerce 2.6 and earlier, you will have to add a version check and call $order->get_order_currency()
with the older WC versions.
Hey just wanted to know if you guys are up to date with WooCommerce 3.2.3 as well as WooCommerce services 1.8.2 ?
Thank you!
]]>Hi, are you guys up to date with WooCommerce 3.0+? I see the last update was 7 months ago
]]>Hello,
We don’t check this forum often so for the fastest support please post a support ticket at https://www.coinpayments.net/help-support
Thanks,
CoinPayments
Hi,
Does this plugin support mass payout? I am using woocommerce with vendors marketplace add-on.
]]>Http auth is not working for me anymore. After someone pays, I receive an email and the debug says invalid IPN/mecharnt ID. Nothing had been changed on my end, so I don’t know why it would start doing that. Also, in the video tutorial you guys have for woocommerce, you guys don’t change the auth type from HMAC to User auth. I put http auth because, I don’t know what HMAC is nor how to set it in my downloads page as its stated in small print. Not sure where those settings might be in the plugin. However, I did try changing to HMAC and it actually did work and confirm the payment however, woocommerce didn’t send the email not sure if that is on my end but for sure, but i know that with http auth everything worked fine.
https://www.ads-software.com/plugins/coinpayments-payment-gateway-for-woocommerce/
]]>Hi the currency options are no longer showing since upgrading to Woocommerce 2.3 is this a known issue. Done all the normal proceedusres of disabling all other plugins and just have this plugin and Woocommerce active.
https://www.ads-software.com/plugins/coinpayments-payment-gateway-for-woocommerce/
]]>