PerfectSolution
Forum Replies Created
-
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Error Woocommerce subscriptionThis issue could be a result of missing acquirer information in your QuickPay setup in your QuickPay manager. Also, it could be a result of incorrect payment methods stated in the payment method field in the Woocommerce QuickPay settings.
I would recommend that you consult the QuickPay support team in this specific case 🙂
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Warning: Declaration of WC_QuickPay_OrdeSuper! Godt du fandt ud af det 🙂
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Warning: Declaration of WC_QuickPay_OrdeHej Henrik,
Det kunne godt tyde på at du har en ældre version af WooCommerce QuickPay installeret. Prøv at hente den seneste version og installér den. Hvis din shop er utilgængelig, kan du opdatere ved at uploade filerne via FTP.
Forum: Reviews
In reply to: [Quickpay for WooCommerce] Great but…This issue has been fixed in 4.8.3.
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Button text not changingUsing the WC_Payment_Gateway::order_button_text property is the official and the correct way of modifying the text on the checkout button. The property is used in templates/checkout/payment-method.php.
If the text is not changing in your case, there is a good chance that either a plugin or a custom snippet in your theme is overriding it.Forum: Plugins
In reply to: [Quickpay for WooCommerce] Quickpay auto captures (even when disabled)Hi Sofusg,
Your payments are autocaptured because you’ve enabled it on physical products.
To turn it off, go to the section ‘Autocapture-indstillinger’. Untick/disable “Fysiske produkter (Standard)”.
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Quickpay auto captures (even when disabled)Hi Sofusg,
What I requested was screenshots of your QuickPay settings in WooCommerce.
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Quickpay auto captures (even when disabled)It sounds a lot like you have a misconfiguration. Could you please send a screenshot of your settings (without sensitive information like merchant info, API and private key)?
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Filters for logosAh sorry, my bad. I was checking the source of the upcoming version of the plugin. You are right, 4.8.2 is not providing any option out of the box to modify the icons programmatically. This will be a feature in the next version though. For now, you can change the icon file manually via FTP.
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Filters for logosYou may use the filter woocommerce_quickpay_checkout_gateway_icon_url which takes two arguments: $icon_url and $icon. You can use $icon to target the specific payment method which in this case will be ‘viabill’.
add_filter('woocommerce_quickpay_checkout_gateway_icon_url', function ($icon_url, $icon) { if( 'viabill' === $icon ) { $icon_url = 'xxx'; } return $icon_url; }, 10, 2);- This reply was modified 8 years, 6 months ago by PerfectSolution.
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Invalid requestHej Finn,
Jeg har lige været et smut inde på din side, og det ser ud som om du har fået afhjulpet problemet! Lykke til med din shop!
Forum: Reviews
In reply to: [Quickpay for WooCommerce] Great but…FYI this problem has been confirmed and a fix is already prepared for the next release.
Forum: Plugins
In reply to: [WooCommerce] Deadlock db errorsDid you find a proper solution to this issue? We are experiencing the very same issue with subscriptions missing from the wp_posts table after checkout. The meta data is present in the wp_postmeta though.
Forum: Reviews
In reply to: [Quickpay for WooCommerce] Great but…Hi Brygger,
Thank you for you feedback.
Lets see if we can get this sorted out. Can you help me out with some more details? Like error messages etc.
Maybe we could add a star or two more to your rating afterwards 😉
Forum: Plugins
In reply to: [Quickpay for WooCommerce] Not working after updateHi Mads,
It sounds like you have one or several plugins clashing on your site. I suggest you enable WP_DEBUG and check your error logs for any errors. Feel free to post them here.