Ovidiu
Forum Replies Created
-
Forum: Plugins
In reply to: [Accept Stripe Payments] Checkout loads foreverMake sure the reCaptcha security feature is functioning properly…
- This reply was modified 3 years, 4 months ago by Ovidiu.
Forum: Plugins
In reply to: [Accept Stripe Payments] variation item name on result pageThere’s no shortcode for this at the moment. I’ll log a ticket for this feature, maybe it will make it into plugin core one day.
Forum: Plugins
In reply to: [Accept Stripe Payments] Strange email receivedDid you by any chance enable the reCaptcha security for the form? You really should as there are many bots out there poking around…
Forum: Plugins
In reply to: [Accept Stripe Payments] Using with WP Affiliate PlatformYou can account for the product price variations using the following code…
$varPrice = isset( $post_data['var_applied'] ) ? $post_data['var_applied'] : ''; // check if we have variations applied if ( $varPrice ) { $varPrice = array_sum(array_column($varPrice, 'price')); }
Forum: Plugins
In reply to: [Accept Stripe Payments] Product Prices Keep ResetingYou set up the product with one time payment in the backend and later you find Donation selected instead?
Is this consistent on both backend and front-end or it only happened once?Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe webhook after paymentI just thought you needed to trigger something on your site during payment complete stage.
If you call this hook which is already inside the plugin and dump those vars, you’ll see what I mean.function getTransactionData( $data, $data['charge'] ) { echo '<pre>'; var_dump($data); echo '</pre>'; } add_action( 'asp_stripe_payment_completed', 'getTransactionData', 10, 2);
Put it inside WordPress Code Snippets plugin if you don’t want to create your own plugin or modify your theme files.
You can also check out the existing addons for this plugin. Maybe it helps with what you’re trying to achieve.Forum: Plugins
In reply to: [Accept Stripe Payments] Stripe webhook after paymentSure, you can hook here …
do_action( 'asp_stripe_payment_completed', $data, $data['charge'] );
Forum: Plugins
In reply to: [Accept Stripe Payments] Change input on Bank statementI’m not exactly sure what you mean. I suspect you’re looking for support for the WooCommerce Stripe Gateway?
This is a totally different and standalone plugin for Stripe payments.Forum: Plugins
In reply to: [Accept Stripe Payments] Thank you in popupNo, its not possible to load it within popup.
Forum: Plugins
In reply to: [Accept Stripe Payments] Bots and charging the wrong amountYou should always use recaptcha to protect the form. Let us know if you’re still getting bots through.
Forum: Plugins
In reply to: [Accept Stripe Payments] Plugin Not Sending Seller EmailsDo you have any SMTP plugin installed? You should authenticate all emails leaving your webserver.
Thanks for reporting. We’ll look into it.
Forum: Plugins
In reply to: [Accept Stripe Payments] Bug: Emails containing +Right, these aliases seem to be popular lately. I’ll open a ticket. Thanks for reporting.
Forum: Plugins
In reply to: [Accept Stripe Payments] 決済ボタンのみ表示の仕方についてThis is how you can do it.
Sounds like a good feature. Thanks for the suggestion.