vipelabs
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook for WooCommerce] Something went wrong when connecting to facebook!I just used the tool and after resetting it said “No settings to reset”
However, I tried the connection workflow again and it worked!
Thank you!
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] IPN/PayPal SettingsChiming in here as we’re facing the same issue – orders getting stuck on Pending Payment then eventually getting Cancelled despite the customer already making payment.
Extremely disappointing release by Inpsyde as proper webhook handling is fundamental and in 2021 a basic requirement! Doesn’t strike much confidence when this was looked over.
The snippet provided by @bakertronics works but it sets the timeout for all remote requests to 60.
Since all of WooCommerce PayPal Payments remote requests are handled by WooCommerce\PayPalCommerce\ApiClient\Endpoint\RequestTrait, A better snippet would be to hook into the ppcp_request_args filter in the request method:
add_filter( 'ppcp_request_args', function( $args, $url ) { $args['timeout'] = 60; return $args; }, PHP_INT_MAX, 2 );
I’ve only just implemented this on my environment along with enabling logging. I will update here once I can confirm my snippet works the same!
Forum: Plugins
In reply to: [Facebook for WooCommerce] 2.1.0 Orders Management API@subscriptiongroup exactly, they need to add a toggle to disable this feature.
Also this is not about sending order data To FB, that’s necessary and I believe is done to send conversion data back to FB via the pixel.
The issue here is about sending orders from FB to WC. FB has an Orders API allowing you to sell directly on FB without redirection. These orders need to be synced back to WC for processing. Unfortunately this was yet another disappointing release by the SkyVerge team. I’ve had one too many mishaps with this plugin and will now be putting extra scrutiny on testing updates before release.
@christineskyverge there should be a toggle to completely disable the update that was made in 2.1.0, precisely all the updates made in attempt to bring the Orders API functionality.
Forum: Plugins
In reply to: [Facebook for WooCommerce] 2.1.0 Orders Management APIHey @christineskyverge ,
The refund does go through however, the line items and order totals don’t get updated.
Please see this link: https://imgur.com/a/Ov1fUra
The first image is what should happen, the second is what is happening after 2.1.0.
We’ve rolled back our version to 2.0.5 for now.
Thanks!
Forum: Plugins
In reply to: [Facebook for WooCommerce] 2.1.0 Orders Management APIHi @christineskyverge ,
Thanks for getting back!
The issue occurs when attempting to refund a stripe order via WooCommerce > Orders. The product is indeed synced with Facebook, however, we are processing checkouts on our website instead of in-App.
It appears update 2.1.0 introduces the Facebook Orders API to handle syncing back remote orders to WC, however, as mentioned we’re not using Facebook’s checkout feature but instead directing users to the product page on WC.
Kind regards,
Vivek