davidecho
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe WebhookForum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe WebhookHi I followed your advise.
Please see here the stripe error logs – https://gist.github.com/davidechoweb/33b08a72461e01943590ef7afd0450de
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay issues with shipping addressHi @lovingbro ,
The shipping address I am using is working fine on the checkout page. Shipping zones are setup correctly on my store. Apple pay is the one having issues.
Here’s the pastebin of my System Status Report – https://pastebin.com/a8RZ9fDN
Please let me know any advise to make this work.Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay issues with shipping addressHi,
- It is not just happening on a specific address. It is happening for all shipping address
- Shipping method is correctly set up. Not having any issues with the shipping address on the checkout page of the website
- There is not exact steps for the issue. All shipping address are not working
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe WebhookHi @shahzeenfarooq ,
The security rules I have on Cloudflare are the following:
- Verified Bots throttle
- Block access outside Europe and US
Does these have a part on blocking Stripe webhooks?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay not showing for iphonesHi @frankremmy ,
Confirming that this is now fixed. Thank you!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay not showing for iphonesHi @frankremmy ,
I found out that on the live site I do not have the domain association file – https://www.uktyretechnicians.co.uk/.well-known/apple-developer-merchantid-domain-association
I went in to my Stripe Dashboard to add it but I am still getting 404 when I go to the link above.
I added the domain like on the screenshot. Am I doing it right?
View post on imgur.com
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay not showing for iphonesHi @frankremmy , I created a staging site of my website here – https://woocommerce-314780-6381116.cloudwaysapps.com/
I did the following but still no luck:
- Optimized Checkout enabled
- Switch to Storefront theme
Could you please advise what else I can look at or do?
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Apple pay not showing for iphonesHi @shahzeenfarooq sorry for the late reply. I am opening up this ticket again.
Please see here the logs –https://quickforget.com/s/2ac5a05e69379d0b59e6a0773e1944e999903f06dbf06cfe
I do not have any cards setup on my wallet on my iphone device but how cam I see the apple pay option on a different website of mine. It uses the same plugin.
Please see screenshot – https://imgur.com/a/weolxxl
First screenshot is the website that is not showing the apple pay option
Second screenshot is showing the apple pay option.Looking forward to your reply.
Hi @mihail-barinov , try searching for it using the SKU EZN34. This product should appear – https://www.homecareessentials.co.uk/product/ecozone-dehumidifier-universal-refill-pouch-450g/
Forum: Plugins
In reply to: [Clone / Duplicate Orders for WooCommerce] stripeintent_id is being copiedHi @bonkerz,
Just want to check in if you’ve seen my above request. I’ve added the code but the payment method are still not copied through when an order is duplicated.
Hi @glenwpcoder, happy new year. Just want to check in on this, have you now found a resolution for this.
Forum: Plugins
In reply to: [Clone / Duplicate Orders for WooCommerce] stripeintent_id is being copiedThank you for this I added the code below
/* WooCommerce ~ Clone Orders ~ Preserve Payment Method */
add_filter( 'cdo_wc_clone_order_ignore_meta_keys', function( $ignore_meta_keys, $original_order_id, $original_order ) {
if ( ! is_array( $ignore_meta_keys ) ) {
$ignore_meta_keys = array();
}
// Keys to ensure are NOT ignored
$allow_keys = array(
'_payment_method',
'_payment_method_title',
);
// Remove allowed keys from ignore list
foreach ( $allow_keys as $key ) {
if ( in_array( $key, $ignore_meta_keys, true ) ) {
$ignore_meta_keys = array_diff( $ignore_meta_keys, array( $key ) );
}
}
return $ignore_meta_keys;
}, 999, 3 ); // Run last, after all other filtersI was expecting to get the same payment method on the cloned order but I am not seeing it. Am I missing something. Please refer to the screenshot below:
https://imgur.com/a/WjErjxNHi @glenwpcoder
- https://imgur.com/a/aOdPdWe
- https://imgur.com/a/lY6Lfno
- We don’t attach the file on the email confirmation sent to customers but here is the recorded entry on CF7DB plugin – https://imgur.com/a/sBSBpQu
- Here are the plugins:
– Conditional Fields for Contact Form 7
– Contact Form CFDB7
– Drag and Drop Multiple File Upload for Contact Form 7
– Redirection for Contact Form 7
– WP Contact Form HubSpot Pro
Forum: Plugins
In reply to: [Clone / Duplicate Orders for WooCommerce] stripeintent_id is being copiedHi @bonkerz , yes this is fixed.
I have another request, how can I include copying the payment method when I clone the order?