mobilewebexpert
Forum Replies Created
-
Solved.
I have solved this now. I was previously using the WooPayments plugin, but swithing to their WooCommerce Stripe Gateway plugin has solved it. (Presumably, Stripe isn’t configured correctly within WooPayment to handle recurring payments.)
Thank you!
Can you tell me what jQuery/JS code I need to show a (currently hidden) donation form?
To reiterate, I only have one donation form on my page, but users need to be able to open it with more than one button.
Thanks. We’ve now got a Stripe account (via the WooPayments plugin), but I’m getting this Payment Options error at checkout when trying to buy our subscription product:
There are no payment methods available. This may be an error on our side. Please contact us if you need any help placing your order.
That error isn’t shown when I checkout for a standard product. Is there more configuration required?
I may be having a similar issue. I think OP may be referring to the issue that when you create a Recurring Donation product, then view that product page, there is no way to add that product to your cart.
Please reply.
Jonas, please let me know, thank you.
Thanks for the reply. Just to clarify, can we do it with Stripe in the free version? And are there any other gateways we can do it with in the free version?
Hiya Jonas,
Thanks for the reply. I can’t provide a link at the moment.
I only need one donation form one my page, but I would like more than one button on the page that opens that one donation form.
For example, we have a big donation button at the top of our page and, following content showing all the reasons why the visitor donate, we then need to show them another Donate button. I expect this is a pretty common scenario.
All Donate buttons should open the same (solitary) form.
How can I achieve this?
Thanks,
JamesJonas, do you have any suggestions?
Hiya Jonas,
I tried adding a link with href=”wcdp-form”, but nothing happens when I clicked it.
I also tried href=”wcdp” (that’s the ID of my donation form) but no luck.
Could the issue be that my donation form is initially hidden?
Thanks,
JamesGreat, thanks. In the end, I used that to just add this to my functions.php:
function my_forminator_name_prefixes( $prefixes ){ // Set the default prefixes in your preferred order $ordered_prefixes = array( "Mr." => __( "Mr.", "forminator" ), "Mrs." => __( "Mrs.", "forminator" ), "Miss" => __( "Miss", "forminator" ), "Ms." => __( "Ms.", "forminator" ), "Mx." => __( "Mx.", "forminator" ), "Dr." => __( "Dr.", "forminator" ), "Prof." => __( "Prof.", "forminator" ) ); return $ordered_prefixes; } add_filter( 'forminator_name_prefixes', 'my_forminator_name_prefixes' );
Yes, Steve, I know what they can be like…
Have just messaged you, cheers.
Any chance you could reply here, given that the problem originally occured on the free version. (May also help someone else in the future that runs into the same problem.)