davdebcom
Forum Replies Created
-
What payment methods are you using?
Might be fixed with this pull request:
https://github.com/vyskoczilova/woocommerce-payforpayment/pull/33Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Unsupported operand typesChecked your code around line 230. It builds the option name for the gateway settings by getting the section from the url, in the case of Mollie Bank transfer that’s ‘mollie_wc_gateway_banktransfer’. Then adds ‘woocommerce_’ as prefix and ‘_settings’ as postfix. But the Mollie plugin doesn’t use this format, it uses:
mollie_wc_gateway_banktransfer_settings, without the woocommerce_ prefix.Would you consider adding a fix for the format that Mollie uses to your codebase so our users can also use your plugin?
Just realised, we might not be the only plugin that doesn’t have the ‘woocommerce_’ prefix, so maybe it might be even better for your plugin to check if get_option( ‘woocommerce_’ . $current_format . ‘_settings’ ); returns a value, and otherwise search for get_option( $current_format . ‘_settings’ ); as a fall back. Might fix the issue with the Sisow plugin too.
- This reply was modified 8 years, 3 months ago by davdebcom.
Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Unsupported operand typesResult of the var_dump is ‘false’.
Forum: Reviews
In reply to: [Mollie Payments for WooCommerce] Very good!Thank you, Jory!
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Website profile not activeThere seems to be an error in your shortcode, could you paste the entire form here so I can check?
Shortcodes only work in the Text widget, is that where you added it?
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] No payment methods availableHi Yannick
The helpdesk on info@mollie.nl is closed during the weekends.
Yes, if you want to sell subscriptions you need credit card and/or SEPA incasso activated, not just iDEAL. There is also a notice in the WordPress admin that tells you about this (in the WooCommerce checkout).
I would suggest not launching anything until you have verified your payment methods are all enabled.
On Monday morning, give Mollie a call and ask them to enable the pending payment method(s) for you. There are some requirements you need to meet to be able to accept SEPA incasso, but if they are met, I’m sure they will enable it shortly.
If there is anything else, please let me know,
Kind regards
DavidForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Dropdown requiredHi Maurits
Some things changed since you posted this. Could you email the form you use to david@paytium.nl, so I can use that for testing your situation and the change?
Kind regards
DavidForum: Plugins
In reply to: [Pay for Payment for WooCommerce] Unsupported operand typesHi Karolina
Didn’t get it… Whats your email?
Kind regards
DavidForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Website profile not activeHi @troela
Without reviewing the account I can’t be sure, but if you have an active Mollie profile, just copy and paste the Mollie API keys for that profile from Mollie.com to Paytium > Instellingen or in English: Paytium >Settings.
That should allow you to continue with creating a form. Otherwise, please let me know.
Kind regards
DavidHi Fran
Not a problem!
If you like Post Snippets and the support, please feel free to let us know in the reviews:
https://wordpress.org/support/plugin/post-snippets/reviews/#new-postKind reagrds
DavidThis is the code that works for me, please try that:
https://gist.github.com/davdebcom/6df03950d08dae466b085f67c8181766Forum: Plugins
In reply to: [Pay for Payment for WooCommerce] Unsupported operand typesHi Karolina
I am one of the developers of the Mollie plugin, can we discuss this mollie@paytium.nl?
Kind regards
DavidHi Joep
It’s not just iDEAL, a message like this is also added for bank transfer, credit card, directdebit, PayPal and Sofort.
Because it is a language string, the easiest solution for you might be to override the string itself. It should work with this code:
function mollie_payments_change_payment_completed_text( $translated_text ) { if ( $translated_text == 'Payment completed by <strong>%s</strong> (IBAN (last 4 digits): %s, BIC: %s)' ) { $translated_text = 'Payment completed by <strong>%s</strong>.'; } return $translated_text; } add_filter( 'gettext', 'mollie_payments_change_payment_completed_text', 20 );I’ve also added it to my list of snippets.
https://github.com/mollie/WooCommerce/wiki/Helpful-snippets#change-payment-completed-by-text-on-return-pageLet me know if that works for you,
Kind regards
David- This reply was modified 8 years, 3 months ago by davdebcom.
Hi Joep
Did some research: it’s not hardcoded, but the translation hasn’t been accepted yet, I’ll see what I can do about that so it appears in the new version.
Looking into the other issue now,
Kind regards
DavidHi Albert
I’m assuming my suggestion fixed your issue, if it didn’t please let me know.
Kind regards
David