emileriksen
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Quickpay] Add filter to get_callback_url()@jenskirk If you need a temporary solution, you can get transactions working with the
woocommerce_quickpay_transaction_link_params
filter:add_filter( 'woocommerce_quickpay_transaction_link_params', function( $params ) { $params['callbackurl'] = $newurl; return $params; } );
The callback URL is used other places though but I’m not sure for what exactly.
- This reply was modified 7 years, 7 months ago by emileriksen.
Forum: Plugins
In reply to: [Invoices for WooCommerce] 2.4.10 wasn’t pushed to tagsHi,
I’m using Composer and wpackagist to manage plugins. wpackagist relies on the plugin version to be in the tags (otherwise how is it going to know what’s in trunk?).
Forum: Plugins
In reply to: [Invoices for WooCommerce] 2.4.10 wasn’t pushed to tagsAny news here? It’d be nice the latest version could be pushed.
Forum: Plugins
In reply to: [WooCommerce Quickpay] Tags are one version behindAwesome! Thank you!
Forum: Plugins
In reply to: [WooCommerce Quickpay] Tags are one version behindYes, exactly ??
Forum: Plugins
In reply to: [WooCommerce Quickpay] Cart is emptied even if payment is not completedIt’s been fixed in newer versions.
Thanks for the update! This does indeed fix the issue ??
Wouldn’t you be able to hook in early enough to disable it in a MU plugin? I actually quite like the way QM hijacks the errors when I’m logged in but it’s terrible for debugging when I’m logged out since it hides all errors without having the admin bar button to notify me causing me to miss errors and notices. I know you can set a cookie to see QM when logged out but it’s terribly inconvenient to have to scroll down to look for errors all the time.