davdebcom
Forum Replies Created
-
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] How to stop recurring paymentMy pleasure!
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] InvoicesHi EigenWijsheid,
There is no real way to send invoices now, but I am considering building an extension for that, can you have a look?
https://www.paytium.nl/extensies/Would that help?
Kind regards
DavidForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] How to stop recurring paymentHi EigenWijsheid
Good question, for payments that are a subscription, there will be an extra box in Payments > Payment details with a button “Cancel subscription”. You can view a screenshot in this tweet:
https://twitter.com/paytium/status/834040265266569217Does that answer your question?
Kind regards
DavidForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Change buttonI haven’t coded this yet, but if you have PHP experience, it shouldn’t be too hard. All payments are post type pt_payment and in the post meta all “_status” should be “paid”. You can create a sql query to combine all amounts of those payments. And place that in a plugin like:
https://nl.wordpress.org/plugins/php-code-widget/Yes, you can adjust the style by adding the CSS classes to your own custom css or:
http://dinevthemes.com/custom-css-wordpress-customizer/Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Change buttonMy pleasure, if you have any more questions, feel free to contact me!
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Change buttonHi Fox
You can add button_label=”Pay” to the very first tag 🙂
Should look like this:
https://monosnap.com/file/Hqeamsi3weexQYQcz8QY4WVkZtYhde.pngDoes that work?
Greetings
DavidForum: Plugins
In reply to: Subscription plugin with Mollie paymentsMollie heeft recent de update uitgebracht waarmee je recurring payment kunt ontvangen met WooCommerce en WooCommerce subscriptions. Dus je kunt aan de slag!
Als je het zonder WooCommerce wilt doen zijn er ook andere plugins, zoals die van mij:
https://wordpress.org/plugins/paytium/Forum: Plugins
In reply to: [Doneren met Mollie] Meer optiesEr bestaat ook wat langer al Paytium, meerdere formulieren en anoniem doneren worden allemaal ondersteund (en meer).
https://wordpress.org/plugins/paytium/Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Custom field type file uploadCool!
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Custom field type file uploadVery cool, thanks for letting me know!
How did you eventually solve the upload problem?
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] download after paymentMy pleasure!
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] download after paymentHi Cees,
Before I noticed your previous message I had already sent you an email about Paytium Emails, that’s about the second option.
Ah yes, the requirement to sent different file per payment makes it a bit more interesting, but it’s still possible with a little code. If you add each payment form to another page, you could use this code. Paytium sends users back to the page they came from, so this will work perfectly.
function paytium_redirect_after_payment( $payment ) { if ( $payment->status == 'paid' ) { if ( get_permalink() == 'http://www.yourdomain.nl/productx' ) { echo '<script> location.replace("http://www.yourdomain.nl/downloadproductx"); </script>'; exit; } elseif ( get_permalink() == 'http://www.yourdomain.nl/producty' ) { echo '<script> location.replace("http://www.yourdomain.nl/downloadproducty"); </script>'; exit; } } } add_action( 'paytium_after_pt_show_payment_details', 'paytium_redirect_after_payment', 10, 1 );Do you understand the suggestion?
Kind regards
DavidForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] download after paymentHi Cees!
At the moment there is no special way to handle downloads after payment. I do have two suggestions. First, you could add the download to the text after payment, see the third FAQ from the bottom here:
https://wordpress.org/plugins/paytium/faq/Second, you could send an email automatically with a link to the download. Would that work? Which do you prefer?
MailChimp integration: actually finished that recently, I expect to release that in March. Invoices: I hope do start development on invoice functionality soon, it’s definitely coming. Both features might become a paid extension or pro version, haven’t decided yet.
Let me know what you think,
Thanks,
David- This reply was modified 9 years, 2 months ago by davdebcom.
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] extend more inpu filedsJust replied.
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] extend more inpu filedsHi
I have a new beta version where I removed that limit. Could you email me at david AT paytium DOT nl so I can send it to you?
Kind regards
David