quadlayers
Forum Replies Created
-
Hi there,
I can definitely see the value in this plugin! However, it’s hard to fully grasp without implementing it and comparing it with the official version.
I haven’t had a good experience with the official PayPal integration. We’ve missed 40% of subscriptions due to errors made by the development team when integrating PayPal v2.
That’s all for now.
Thank you very much for creating this plugin. I think I’ll give it a try.
Best regards,
Hello @mrclayton,
Thanks for your prompt response!
Yes, I’m referring to the WooCommerce Stripe Payments plugin. I’ve conducted tests on both plugins, but I haven’t noticed any differences in the settings or final integration.
As a developer, you might know what added value your plugin provides in terms of features or reliability. I’m not looking for a full comparison, just an explanation of what justifies the existence of this plugin.
Thanks in advance!
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Is it possible to change paypal account?Hello @inpsydekrystian
Yes, im talking about changing seller account. Do you know if Paypal offer support for the token migration ?Forum: Plugins
In reply to: [Search Exclude] Can´t get rid of the noticeHello @mikkelcrunch,
The ‘Yes, of course’ button only redirects to the review page.
To close the notice, you need to click the ‘X’ icon in the top right corner.Let me know if you’re able to close the notice now.
Best regardsHello this plugin doesn’t provide subscriptions functionality, it includes the lifetime option inside the official woocommerce subscription plugin
Best regards
Hello @wpturnedup,
It is not available for simple subscriptions because it is not necessary. Instead of a simple lifetime subscription, you can create a simple product.
We’ve included the lifetime subscription option in the variable subscriptions to allow plan switching, which is not currently supported natively by the WooCommerce Subscriptions plugin.
Hello @khungate
I’m unable to tell you if the issue has been fixedIt took two days to finish the scheduled actions and can’t risk to generate this issue again by running a new mailchimp sync
Best regards
Forum: Reviews
In reply to: [Change Storefront Footer Copyright Text] très bon pluginThanks @neodisequip
Forum: Reviews
In reply to: [Change Storefront Footer Copyright Text] Simply works!Thanks @jdunlevy !
There is no other wat to contact support in the platform.
Forum: Plugins
In reply to: [ShareASale WooCommerce Tracker] PHP errorsHello team
Any updates about this issue? I’ve found more errors with PHP 8.2 server:[21-Aug-2024 13:57:45 UTC] PHP Deprecated: Return type of FtpClient\FtpClient::count($directory = ‘.’, $type = null, $recursive = true) should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/1253731.cloudwaysapps.com/xxxxx/public_html/wp-content/plugins/shareasale-wc-tracker/includes/FtpClient/FtpClient.php on line 543
[21-Aug-2024 13:57:46 UTC] PHP Deprecated: Creation of dynamic property ShareASale_WC_Tracker_Autovoid::$options is deprecated in /home/1253731.cloudwaysapps.com/xxxxx/public_html/wp-content/plugins/shareasale-wc-tracker/includes/class-shareasale-wc-tracker-autovoid.php on line 16
[21-Aug-2024 13:57:46 UTC] PHP Deprecated: Return type of FtpClient\FtpClient::count($directory = ‘.’, $type = null, $recursive = true) should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/1253731.cloudwaysapps.com/xxxxx/public_html/wp-content/plugins/shareasale-wc-tracker/includes/FtpClient/FtpClient.php on line 543
[21-Aug-2024 13:57:48 UTC] PHP Deprecated: Creation of dynamic property ShareASale_WC_Tracker_Autovoid::$options is deprecated in /home/1253731.cloudwaysapps.com/xxxxx/public_html/wp-content/plugins/shareasale-wc-tracker/includes/class-shareasale-wc-tracker-autovoid.php on line 16
[21-Aug-2024 13:57:48 UTC] PHP Deprecated: Return type of FtpClient\FtpClient::count($directory = ‘.’, $type = null, $recursive = true) should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /home/1253731.cloudwaysapps.com/xxxxx/public_html/wp-content/plugins/shareasale-wc-tracker/includes/FtpClient/FtpClient.php on line 543
^[[B
Hello @eugenecleantalk,
I’m afraid I can’t conduct tests on this production site. Your plugin has severely disrupted the synchronization with our payment system:
- We have pending orders that need to be completed manually, and we are unsure if the subscriptions will renew correctly next year.
- We’ve missed some renewal orders that should have been triggered by the payment system, and there is no way to trigger them again, leading us to miss some renewals.
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Critical Logic Issue in Cart Recovery ProcessProposed solution:
public function onNewOrder($order_id)
{
$order = MailChimp_WooCommerce_HPOS::get_order($order_id);public function onNewOrder($order_id)
{
$order = MailChimp_WooCommerce_HPOS::get_order($order_id);
// Check if Mailchimp is configured
if (!mailchimp_is_configured()) {
return;
}
// FIX: Check if the order is complete before proceeding
if ($order->get_status() !== 'completed') {
return;
}
// Grab the landing site cookie if we have one here
$landing_site = $this->getLandingSiteCookie();
if (empty($landing_site)) {
$landing_site = $order->get_meta('mailchimp_woocommerce_landing_site');
if (!$landing_site) $campaign = null;
}
// Expire the landing site cookie so we can rinse and repeat tracking
$this->expireLandingSiteCookie();
// Remove this record from the database only if the order is complete
$this->clearCartData();
return array (
'landing_site' => $landing_site
);
}Hello @ckadenge
Thanks for your reply!
Even if i activate the cron optimizer the issue persists.The cron is working correctly, the issue is that the actions run very slow, around 1 per second.