Hi team,
How can we retrieve the expiry date of a subscription plan in the plugin? Additionally, what is the recommended way to handle the renewal process? I also need to store the payment status in a custom table.
Do we have any documentation available for this?
Please reply ASAP.
Hello,
Would it be possible to add an indication of a secure connection for the popup window? I already have a couple of people mentionning me they were reluctant to move forward with their purchase because they didn’t feel the connection was secure… They were looking for the little lock symbol they’ve been encouraged to seek when making a transaction on line…
Thanks in advance for your feedback on this request
With kind Regards
Alain
Is there a way to add a phone number to the fields. Currently we have the billing info fields, name, email, and cc info in the form that gets submitted to Stripe. How can we add the phone number as well?
]]>After a successful payment, the notification emails are not sent to the seller and the buyer.
]]>Hi Support Team,
I’m trying to execute a function after a subscription is canceled. I’ve used the hooks provided in the documentation, but they don’t seem to be working as expected.
Is there an alternative approach to store the subscription status in a custom table? Any guidance or examples would be greatly appreciated.
Method 1:
add_action('asp_subscription_canceled', 'update_purchase_status_on_cancellation', 10, 2);
function update_purchase_status_on_cancellation($sub_id, $event_data) {
global $wpdb;
$table_name = $wpdb->prefix . 'purchase_product';
$result = $wpdb->update(
$table_name,
array(
'payment_status' => 'Canceled',
'updated_at' => current_time('mysql')
),
array('subscription_id' => $sub_id),
array('%s', '%s'),
array('%s')
);
if ($result === false) {
error_log('Failed to update payment status for subscription ID: ' . $sub_id);
}
}
method 2: on cancel button click called ajax
add_action('wp_ajax_update_purchase_status_on_cancellation', 'update_purchase_status_on_cancellation');
add_action('wp_ajax_nopriv_update_purchase_status_on_cancellation', 'update_purchase_status_on_cancellation');
function process_subs_cancel() {
global $wpdb;
// Get token from the request
$token = isset($_POST['token']) ? sanitize_text_field($_POST['token']) : '';
if (empty($token)) {
wp_send_json_error(['message' => 'Token is missing']);
}
// Retrieve the post ID or subscription ID using the token
$subscription_id = $wpdb->get_var(
$wpdb->prepare(
"SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s",
'sub_token', // Replace with the actual meta key for token
$token
)
);
if (!$subscription_id) {
wp_send_json_error(['message' => 'Invalid token']);
}
// Update the payment status
$table_name = $wpdb->prefix . 'purchase_product';
$result = $wpdb->update(
$table_name,
array(
'payment_status' => 'Canceled',
'updated_at' => current_time('mysql'),
),
array('subscription_id' => $subscription_id),
array('%s', '%s'),
array('%s')
);
if ($result === false) {
error_log('Failed to update payment status for subscription ID: ' . $subscription_id);
wp_send_json_error(['message' => 'Failed to update subscription status']);
}
wp_send_json_success(['message' => 'Subscription canceled successfully']);
}
]]>
I want to sell a fisical product to certain countries, i.e. European Countries US and Canada.
All other Shipping adresses should be blocked.
Is this possible?
]]>Hello. Can you confirm that your plugin protects our digital products from indexing in search engines. For example, are our PDFs protected? THANKS.
]]>Hi
I have an issue with the check out using credit/debit card via Stripe.
2024-10-22T07:33:42+00:00 Info Payment gateway enabled: "Stripe"
2024-10-22T08:45:34+00:00 Info Payment gateway enabled: "Stripe Card Processing"
2024-10-22T08:46:25+00:00 Info Payment gateway enabled: "Stripe"
2024-10-22T08:46:25+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:25+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:25+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:25+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:26+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:27+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:27+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:27+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:27+00:00 Info Payment gateway enabled: ""
2024-10-22T08:46:27+00:00 Info Payment gateway enabled: ""
2024-10-22T08:53:16+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:17+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:17+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:28+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:39+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:53:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:40+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:44+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:56+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:54:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:15+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:18+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:18+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:20+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:21+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:23+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:55:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:01+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:03+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:03+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:08+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:20+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:22+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:40+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:45+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:47+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:50+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:50+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:53+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:56:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:57:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:57:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:09+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:11+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:13+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:35+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:36+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:39+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:41+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:44+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:55+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:57+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:58+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T08:59:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:01+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:03+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:04+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:10+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:12+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:13+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:15+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:16+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:18+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:19+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:21+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:22+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:24+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:00:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:11+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:33+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:41+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:56+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:57+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:01:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:00+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:02+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:30+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:33+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:36+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:02:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:03:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:13+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:20+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:22+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:23+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:25+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:26+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:28+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:30+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:31+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:33+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:55+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:57+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:04:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:00+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:01+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:03+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:04+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:06+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:07+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:09+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:11+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:16+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:19+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:21+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:22+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:24+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:26+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:27+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:29+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:30+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:33+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:36+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:39+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:41+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:44+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:47+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:50+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:53+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:05:56+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:12+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:15+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:17+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:20+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:21+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:23+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:24+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:26+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:28+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:30+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:31+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:34+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:35+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:37+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:38+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:40+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:43+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:45+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:54+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:06:55+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:07:29+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:07:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:07:49+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:07:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:07:52+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:08:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:08:43+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:08:45+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:08:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:08:53+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:25+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:40+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:53+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:55+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:09:56+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:06+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:09+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:11+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:12+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:14+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:15+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:17+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:18+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:18+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:19+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:21+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:22+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:32+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:10:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:11:58+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:11:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:01+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:23+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:25+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:39+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:42+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:43+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:45+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:46+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:48+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:50+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:51+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:53+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:55+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:56+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:57+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:12:59+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:13:00+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:13:01+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:13:03+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:13:05+00:00 Warning Empty patterns received from the PTK Pattern Store
2024-10-22T09:13:29+00:00 Warning Empty patterns received from the PTK Pattern Store
Can you advise on how to rectify this?
]]>Does this integration work with any membership plugin, such as Ultimate Member and MemberPress, when applying a paywall to Gutenberg content blocks or custom post types?
How can the stripe plugin effectively restrict access to specific blocks or posts based on membership levels, thereby maximizing content monetization opportunities on the site?
OR can specific post or page or block be made restricted using this plugin, independent of the member plugin?
Thanks in advance.
Hi Support Team,
I am using the Accept Stripe Payments plugin on my WordPress site and would like assistance with handling failed payment transactions. Specifically, I want to create custom pages of payment success and payment failure page when a payment fails. I couldn’t find any documentation on available hooks or settings for this use case.
Could you please guide me on how to implement this feature, or let me know if the plugin provides any hooks or options for failed payment handling?
Thank you for your assistance.
]]>Hello,
I’m struggling with error while finalising transaction in the checkout field. When I choose payment option and click buy then error appears “Could not retrieve elements store due to unexpected error”. I can’t find any logs in the WooCommerce settings. Is there any possibility to solve it out?
I’m using Astra Theme with Spectra. All additionals plugins are switched off.
]]>WordPress Environment<br><br>WordPress address (URL): https://www.czasnarekord.pl<br>Site address (URL): https://www.czasnarekord.pl<br>WC Version: 9.3.3<br>Legacy REST API Package Version: Wtyczka przestarza?ego REST API nie jest zainstalowana w tej witrynie.<br>Action Scheduler Version: ? 3.8.1<br>Log Directory Writable: ?<br>WP Version: 6.6.2<br>WP Multisite: –<br>WP Memory Limit: 512 MB<br>WP Debug Mode: –<br>WP Cron: ?<br>Language: pl_PL<br>External object cache: – Server Environment<br><br>Server Info: LiteSpeed<br>PHP Version: 8.2.23<br>PHP Post Max Size: 512 MB<br>PHP Time Limit: 900<br>PHP Max Input Vars: 10000<br>cURL Version: 7.87.0<br>OpenSSL/1.1.1w<br><br>SUHOSIN Installed: –<br>MySQL Version: 10.6.19-MariaDB-cll-lve<br>Max Upload Size: 512 MB<br>Default Timezone is UTC: ?<br>fsockopen/cURL: ?<br>SoapClient: ?<br>DOMDocument: ?<br>GZip: ?<br>Multibyte String: ?<br>Remote Post: ?<br>Remote Get: ? Database<br><br>WC Database Version: 9.3.3<br>WC Database Prefix: wpyl_<br>Ca?kowity rozmiar bazy danych: 15.27MB<br>Rozmiar bazy danych: 12.47MB<br>Rozmiar indeksu bazy danych: 2.80MB<br>wpyl_woocommerce_sessions: Dane: 0.05MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_woocommerce_api_keys: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_woocommerce_attribute_taxonomies: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_woocommerce_downloadable_product_permissions: Dane: 0.02MB + Indeks: 0.06MB + Silnik InnoDB<br>wpyl_woocommerce_order_items: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_woocommerce_order_itemmeta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_woocommerce_tax_rates: Dane: 0.02MB + Indeks: 0.06MB + Silnik InnoDB<br>wpyl_woocommerce_tax_rate_locations: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_woocommerce_shipping_zones: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_woocommerce_shipping_zone_locations: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_woocommerce_shipping_zone_methods: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_woocommerce_payment_tokens: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_woocommerce_payment_tokenmeta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_woocommerce_log: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_actionscheduler_actions: Dane: 0.36MB + Indeks: 0.50MB + Silnik InnoDB<br>wpyl_actionscheduler_claims: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_actionscheduler_groups: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_actionscheduler_logs: Dane: 0.28MB + Indeks: 0.20MB + Silnik InnoDB<br>wpyl_commentmeta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_comments: Dane: 0.02MB + Indeks: 0.09MB + Silnik InnoDB<br>wpyl_links: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_litespeed_url: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_litespeed_url_file: Dane: 0.02MB + Indeks: 0.08MB + Silnik InnoDB<br>wpyl_nm_personalized: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_options: Dane: 3.41MB + Indeks: 0.09MB + Silnik InnoDB<br>wpyl_pmxe_exports: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxe_google_cats: Dane: 0.39MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxe_posts: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxe_templates: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_files: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_hash: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_history: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_images: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_imports: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_posts: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_pmxi_templates: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_postmeta: Dane: 2.11MB + Indeks: 0.19MB + Silnik InnoDB<br>wpyl_posts: Dane: 4.47MB + Indeks: 0.06MB + Silnik InnoDB<br>wpyl_termmeta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_terms: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_term_relationships: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_term_taxonomy: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_usermeta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_users: Dane: 0.02MB + Indeks: 0.05MB + Silnik InnoDB<br>wpyl_wc_admin_notes: Dane: 0.06MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_wc_admin_note_actions: Dane: 0.06MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_wc_category_lookup: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_wc_customer_lookup: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_download_log: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_orders: Dane: 0.02MB + Indeks: 0.11MB + Silnik InnoDB<br>wpyl_wc_orders_meta: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_order_addresses: Dane: 0.02MB + Indeks: 0.06MB + Silnik InnoDB<br>wpyl_wc_order_coupon_lookup: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_order_operational_data: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_order_product_lookup: Dane: 0.02MB + Indeks: 0.06MB + Silnik InnoDB<br>wpyl_wc_order_stats: Dane: 0.02MB + Indeks: 0.05MB + Silnik InnoDB<br>wpyl_wc_order_tax_lookup: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_wc_product_attributes_lookup: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_wc_product_download_directories: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_wc_product_meta_lookup: Dane: 0.02MB + Indeks: 0.11MB + Silnik InnoDB<br>wpyl_wc_rate_limits: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_wc_reserved_stock: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_wc_tax_rate_classes: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_wc_webhooks: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_woocommerce_tpay: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_woocommerce_tpay_clients: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_wt_iew_action_history: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_wt_iew_mapping_template: Dane: 0.02MB + Indeks: 0.00MB + Silnik InnoDB<br>wpyl_yoast_indexable: Dane: 0.02MB + Indeks: 0.09MB + Silnik InnoDB<br>wpyl_yoast_indexable_hierarchy: Dane: 0.02MB + Indeks: 0.05MB + Silnik InnoDB<br>wpyl_yoast_migrations: Dane: 0.02MB + Indeks: 0.02MB + Silnik InnoDB<br>wpyl_yoast_primary_term: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB<br>wpyl_yoast_seo_links: Dane: 0.02MB + Indeks: 0.03MB + Silnik InnoDB Post Type Counts<br><br>attachment: 23<br>custom_css: 2<br>customize_changeset: 10<br>nav_menu_item: 9<br>oembed_cache: 1<br>page: 11<br>post: 7<br>product: 6<br>product_variation: 70<br>revision: 135<br>shop_order_placehold: 5<br>wp_global_styles: 2<br>wp_navigation: 1 Security<br><br>Secure connection (HTTPS): ?<br>Hide errors from visitors: ? Active Plugins (4)<br><br>Starter Templates: przez Brainstorm Force – 4.4.5<br>Spectra: przez Brainstorm Force – 2.16.1<br>WooCommerce Stripe Gateway: przez WooCommerce – 8.7.0<br>WooCommerce: przez Automattic – 9.3.3 Inactive Plugins (10)<br><br>Advanced Order Export For WooCommerce: przez AlgolPlus – 3.5.5<br>Checkout Field Editor for WooCommerce: przez ThemeHigh – 2.0.4<br>Converter for Media: przez matt plugins - Optimize images by convert WebP & AVIF – 6.1.1<br>Flexible Cookies: przez WP Desk – 1.1.3<br>LiteSpeed Cache: przez LiteSpeed Technologies – 6.5.1<br>PPOM for WooCommerce: przez Themeisle – 33.0.5<br>WooCommerce Direct Checkout: przez QuadLayers – 3.4.0<br>WPC Linked Variation for WooCommerce: przez WPClever – 4.2.6<br>WPC Variations Radio Buttons for WooCommerce: przez WPClever – 3.5.8<br>Yoast SEO: przez Team Yoast – 23.6 Settings<br><br>Legacy API Enabled: –<br>Force SSL: –<br>Currency: PLN (z?)<br>Currency Position: right_space<br>Thousand Separator:<br>Decimal Separator: ,<br>Number of Decimals: 0<br>Taxonomies: Product Types: external (external)<br>grouped (grouped)<br>simple (simple)<br>variable (variable)<br><br>Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)<br>exclude-from-search (exclude-from-search)<br>featured (featured)<br>outofstock (outofstock)<br>rated-1 (rated-1)<br>rated-2 (rated-2)<br>rated-3 (rated-3)<br>rated-4 (rated-4)<br>rated-5 (rated-5)<br><br>Connected to WooCommerce.com: –<br>Enforce Approved Product Download Directories: ?<br>HPOS feature enabled: ?<br>Order datastore: Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore<br>HPOS data sync enabled: – Logging<br><br>Enabled: ?<br>Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2<br>Retention period: 30 dni<br>Level threshold: –<br>Log directory size: 12 KB WC Pages<br><br>Strona sklepu: #8 - /zawody/<br>Koszyk: #483 - /koszyk/ - Contains the [woocommerce_cart] shortcode<br>Zamówienie: #484 - /zamowienie/ - Contains the [woocommerce_checkout] shortcode<br>Moje konto: #485 - /moje-konto/<br>Regulamin: #1125 - /regulamin/ Theme<br><br>Name: Astra<br>Version: 4.6.14 (dost?pna aktualizacja do wersji 4.8.3)<br>Author URL: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme<br>Child Theme: ? – Je?li modyfikujesz WooCommerce lub motyw nadrz?dny<br>którego nie jeste? autorem<br>polecamy u?ywanie motywu potomnego. Zobacz: Jak tworzy? motywy potomne<br><br>WooCommerce Support: ? Templates<br><br>Overrides: – Admin<br><br>Enabled Features: activity-panels<br>analytics<br>product-block-editor<br>coupons<br>core-profiler<br>customize-store<br>customer-effort-score-tracks<br>import-products-task<br>experimental-fashion-sample-products<br>shipping-smart-defaults<br>shipping-setting-tour<br>homescreen<br>marketing<br>mobile-app-banner<br>navigation<br>onboarding<br>onboarding-tasks<br>pattern-toolkit-full-composability<br>product-custom-fields<br>remote-inbox-notifications<br>remote-free-extensions<br>payment-gateway-suggestions<br>printful<br>shipping-label-banner<br>subscriptions<br>store-alerts<br>transient-notices<br>woo-mobile-welcome<br>wc-pay-promotion<br>wc-pay-welcome-page<br>launch-your-store<br><br>Disabled Features: experimental-blocks<br>minified-js<br>product-pre-publish-modal<br>settings<br>async-product-editor-category-field<br>product-editor-template-system<br>blueprint<br>reactify-classic-payments-settings<br><br>Daily Cron: ? Next scheduled: 2024-10-15 13:27:44 +02:00<br>Options: ?<br>Notes: 76<br>Onboarding: completed Action Scheduler<br><br>Zakończ: 1?100<br>Oldest: 2024-09-14 18:27:05 +0000<br>Newest: 2024-10-15 12:19:46 +0000<br><br>Niepowodzenie: 3<br>Oldest: 2024-05-21 13:34:35 +0000<br>Newest: 2024-10-09 15:38:14 +0000<br><br>Oczekuj?ce: 2<br>Oldest: 2024-10-15 15:11:10 +0000<br>Newest: 2024-10-16 00:03:48 +0000 Status report information<br><br>Generated at: 2024-10-15 14:23:55 +02:00<br>
Hello,
I try to create new product, but in “Price & Currency” field can’t see input to set the price. I see only radio buttons “One-time payment” and “Donation”… and when try to save product returns this error – Invalid product price: one-time payment product price cannot be zero.
My WP is old version 4.9 and may be this is the problem… but, is there a way to fix this, without updating WP?
Regards!
]]>I keep getting page load signature failures and hCaptcha (i also tried google captcha) failure. I am using litespeedcache and when I turn this plugin off I do manage to make successful test payments.
I already turned caching and optimization off on all related pages such as, check out, products, the separate product pages, and the page on which the button is placed.
So I’m not really sure what else I can do to get this to work. Is there anything that I missed?
Dear Support Team,
I am considering purchasing the Apple and Google Pay addon for Google Pay, but I have a query regarding its integration with websites or web applications. The current documentation doesn’t seem to provide any information on how this addon can be used in such environments.
Could you please clarify whether the addon supports website or web app integration? If so, could you provide any relevant documentation or guidelines to help with the implementation?
Looking forward to your response.
]]>Hi Support Team,
I am working on maintaining payment statuses (such as failed, succeeded, and canceled) in a custom WordPress table. I have been using the asp_stripe_payment_completed
hook to successfully store the payment status and payment details in the database for successful transactions.
However, I am facing an issue when trying to capture and store failed payment statuses. I attempted to use the asp_ng_before_payment_processing
hook for this purpose, but I am unable to get it to store failed payment status correctly.
Could you please assist me in resolving this issue? I would appreciate any guidance or examples on how to properly store failed payments using the appropriate hooks.
Thank you in advance for your help!
refered this doc: https://s-plugins.com/stripe-payments-plugin-action-hooks-reference/
Hello! Great plugin!
Is there a way to capture the amount paid on the thank you page via php?
(Users are entering a custom amount)
So upon successful payment, I need to grab the amount paid.
The amount is in the body of the thank you page, but is there any global php variable or function we can use?
I hope I make sense.
Please help,
Thank you!
We noticed on our website that purchases were being correctly transacted into Stripe, however, they were reaching a fatal error on the WordPress side. So although Stripe was capturing the payment, WordPress was showing the user a fatal error, and not re-directing them to the thank-you page. And the orders were not being captured/shown in the WP-admin backend “orders” section.
I did some digging in the error logs and it seemed to be related to “Surchage” coding.
I was getting this error:Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /public_html/wp-content/plugins/stripe-payments/includes/class-asp-payment-data.php:58
For the moment I have manually updated the code of the plugin myself, editing this file:/includes/class-asp-payment-data.php
FROM:
public function get_surcharge_data( string $key ) {
if ( empty($this->surcharge_data) ) {
$metadata = isset($this->obj->charges->data[0]->metadata) ? $this->obj->charges->data[0]->metadata : array();
if (isset($metadata['Surcharge Amount'])){
$this->surcharge_data['amount'] = $metadata['Surcharge Amount'];
}
if (isset($metadata['Surcharge Label'])){
$this->surcharge_data['label'] = $metadata['Surcharge Label'];
}
}
return isset($this->surcharge_data[$key]) ? (string) $this->surcharge_data[$key] : '';
}
TO:
public function get_surcharge_data( string $key ) {
// Ensure surcharge_data is initialized as an array if not already
if (!is_array($this->surcharge_data)) {
$this->surcharge_data = array();
}
if ( empty($this->surcharge_data) ) {
// Check if metadata exists and is an object
$metadata = isset($this->obj->charges->data[0]->metadata) ? (array) $this->obj->charges->data[0]->metadata : array();
if (isset($metadata['Surcharge Amount'])) {
$this->surcharge_data['amount'] = $metadata['Surcharge Amount'];
}
if (isset($metadata['Surcharge Label'])) {
$this->surcharge_data['label'] = $metadata['Surcharge Label'];
}
}
return isset($this->surcharge_data[$key]) ? (string) $this->surcharge_data[$key] : '';
}
I hope that helps, can you double check if your plugin is setup correctly to handle PHP8 in this regard, or if any other tweaks are necessary?
]]>Hi, I have this problem after a proof of purchase:
System was not able to complete the payment. Invalid currency received. Expected EUR, got .
WordPress version: 6.3.1
Accept Stripe Paypemts version: 2.0.87
]]>Hello!
Great plugin!
How can we put the stripe form on the page instead of having to click on the button to open a popup?
Please help!
]]>This is happening all over my site.
Exhibit “A” – https://tro.bike/motorcycle-touring/maps/usa/kentucky/hillbilly-triangle-ride/
Your plugin’s code generates attributes reading … class=”asp-stripe-form” action=””
The empty action attribute is invalid markup and I’m notified via email (W3C API) every time it strikes.
My current “solution” is to alter the output buffer … $buffer = str_replace(‘class=”asp-stripe-form” action=””‘, ‘class=”asp-stripe-form”‘, $buffer);
… but this really needs to be address as I’m not convinced my fix qualifies as a non-empty, required attribute in the form.
We enable custom field on payment form. The field name says “enter child name and age” because it’s for a camp. Great. But when we export Stripe data to see payments as a .csv file, under the column “Custom Fields (metadata)” in each row before the info submitted by user, there is the field name “enter child name and age” so it will look like “enter child name and age: bobby 9” and so on for every row.
Is there a good reason why the field name should be included with the input data if we already have the column heading “Custom Fields (metadata)” – I think you could improve this by excluding the field name from being included with the input data which is submitted to Stripe.
What do you think?
]]>Can I use this plugin for business purpose or it’s only for non-commercial use?
]]>2 days ago reoccurring monthly payment links between WooCommerce and Stripe were working fine.
Now additional reoccuring payments (not the same customers) are failing with the error in Stripe as:
payment_intent_unexpected_state
You cannot confirm this PaymentIntent because it’s missing a payment method. You can either update the PaymentIntent with a payment method and then confirm it again, or confirm it again directly with a payment method or ConfirmationToken.
{
"confirmation_method": "automatic",
"description": "Coach Connect Australia - Order 15457",
"metadata": {
"order_id": "15457",
"site_url": "https://coachconnectaustralia.com.au",
"payment_type": "recurring",
"customer_email": "XXXX@XXXXX",
"customer_name": "X Pty Ltd"
},
"currency": "aud",
"off_session": "true",
"customer": "cus_PgXJSCZth9XF3y",
"confirm": "true",
"amount": "2400",
"payment_method_types": {
"0": "card"
}
}
Response body
{
"error": {
"code": "payment_intent_unexpected_state",
"doc_url": "https://stripe.com/docs/error-codes/payment-intent-unexpected-state",
"message": "You cannot confirm this PaymentIntent because it's missing a payment method. You can either update the PaymentIntent with a payment method and then confirm it again, or confirm it again directly with a payment method or ConfirmationToken.",
"request_log_url": "https://dashboard.stripe.com/logs/req_kvC4fUhFZwCm4X?t=1720532835",
"type": "invalid_request_error"
}
}
Request POST body
{
"confirmation_method": "automatic",
"description": "Coach Connect Australia - Order 15457",
"metadata": {
"order_id": "15457",
"site_url": "https://coachconnectaustralia.com.au",
"payment_type": "recurring",
"customer_email": "X@X",
"customer_name": "x Pty Ltd"
},
"currency": "aud",
"off_session": "true",
"customer": "cus_PgXJSCZth9XF3y",
"confirm": "true",
"amount": "2400",
"payment_method_types": {
"0": "card"
}
}
This is the WooCommerce Debug Log. https://pastebin.com/aL6y0rY3#google_vignette
This is the WooCommerce Status Log: https://pastebin.com/Btts4xNC
I’ve tried to force the payment manually in WooCommerce -> Orders -> Retry however it comes up with the same error.
Does anyone know what the problem is? Thanks
]]>I have a critical error with the “accept stripe payments” extension when I want to change the price of an existing product. The problem doesn’t appear when I create a new product.
My configuration:
WordPress version 6.5.5
Active theme: OceanWP (version 3.5.7)
Current extension: Accept Stripe Payments (version 2.0.86)
PHP version 8.1.29
How can I solve this problem?
————————
Details of error :
Une erreur de type E_ERROR a été causée dans la ligne 1119 du fichier /home/zjql8706/un-art-de-vivre.com/wp-content/plugins/stripe-payments/admin/includes/class-asp-admin-product-meta-boxes.php. Message d’erreur : Uncaught TypeError: array_values(): Argument #1 ($array) must be of type array, null given in /home/zjql8706/un-art-de-vivre.com/wp-content/plugins/stripe-payments/admin/includes/class-asp-admin-product-meta-boxes.php:1119
Stack trace: 0 /home/zjql8706/un-art-de-vivre.com/wp-content/plugins/stripe-payments/admin/includes/class-asp-admin-product-meta-boxes.php(1119): array_values(NULL) 1 /home/zjql8706/un-art-de-vivre.com/wp-includes/class-wp-hook.php(324): ASP_Admin_Product_Meta_Boxes->save_product_handler(1051, Object(WP_Post), true) 2 /home/zjql8706/un-art-de-vivre.com/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(”, Array) 3 /home/zjql8706/un-art-de-vivre.com/wp-includes/plugin.php(517): WP_Hook->do_action(Array) 4 /home/zjql8706/un-art-de-vivre.com/wp-includes/post.php(4817): do_action(‘save_post_asp-p…’, 1051, Object(WP_Post), true) 5 /home/zjql8706/un-art-de-vivre.com/wp-includes/post.php(4930): wp_insert_post(Array, false, true) 6 /home/zjql8706/un-art-de-vivre.com/wp-admin/includes/post.php(453): wp_update_post(Array) 7 /home/zjql8706/un-art-de-vivre.com/wp-admin/post.php(227): edit_post() 8 {main}
thrown
]]>We have set up an item with a payment page in our Stripe account. It generates a URL like this:
https://buy.stripe.com/xxxxxxxxxxxxxxxxx
Is there any way that the plugin can create a button to pop up that payment page? Either using the entire URL, or just the number of the item (xxxxxxxxxxxxxxxxx) ?
]]>Hello,
In previous plugin versions I was able to create product (one time payment), and if I didn’t enter the price (leave it blank) it would allow customers to set arbitrary amounts for payment.
I need an arbitrary amount because their invoices or bills are different, they don’t have a unique amount.
From the newer version of the plugin, when I set the price field to empty, I get the following message:
“Error occurred: Price validation failed. The submitted amount does not match the product’s configured price. Expected: 0, Submitted: X”
Is it possible to use arbitrary price for products from now on?
]]>I had a customer tell me that they were not able to use the payment form (we are using your plugin). The reason they gave is that the reCAPTCH was “not working correctly”.
On investigation, I cannot see any issue, and my test worked ok, however, in the Google reCaptcha dashboard, I see this message:
We detected that your site is not verifying reCAPTCHA solutions. This is required for the proper use of reCAPTCHA on your site. Please see?our developer site?for more information.
The site is using Cloudflare, and Autoptimize – in case that could be the issue?
]]>I need to make the currency changes if the user location is India ?so currency would be?rupee.
Based on user location currency will display.
is it possible?
Hello,
I created a product, but when I click on “Comprar Ahora” aparece the page not found.
This is the url: https://desarrolloskrm.com.mx/index.php/asp-products/manzana1/
Could you help please
Thank you
Regards
]]>Hi, to help diagnose an issue I need to replace the current version 2.0.85 with the previous version 2.0.84, but your Download button does not link to a particular version as is the usual custom – so I am unable to modify the download URL in order to access the version I require. Can you please advise from where I can access 2.0.84?
]]>