marvelcreative
Forum Replies Created
-
Hi Crish,
I’m afraid your plugin did not do what I needed it to. In the end I had to invest in Gravity Forms.
Thanks Mike, I had already looked into that, but it doesn’t quite do what I need it to as it only has quite a basic integration. I had to swap to Gravity Forms as the support guys here were unable to resolve the issues for me and too much time had ticked by.
This is what I need as well. This would make the plugin a lot more flexible.
Forum: Plugins
In reply to: [Contact Form 7] Stripe IntegrationSorry, my bad. I updated and now I see it.
Thanks for your reply.Hi Crish, the contact form on your website does not work.
I have emailed you.Hi Crish,
Yes I still need help please.
I cannot find your email address in your profile…Kind Regards,
DavidForum: Plugins
In reply to: [Contact Form 7] Change user role on submission of formHere is my working code in case it helps anyone else.
It checks for the form ID, and also tests for the result of a user input of a checkbox field on my form. It assigns a different user role depending on whether they ‘accepted’ or ‘declined’ their place using the form.function wpcf7_before_send_mail_function($contact_form, $abort, $submission) { $form_id = $contact_form->id(); $output= $_POST['decision']; if ( is_user_logged_in() && $form_id === 2368 && $output == 'Accept') { $user = wp_get_current_user(); $user->set_role('enrolment_deposit_paid'); } else if ( is_user_logged_in() && $form_id === 2368 && $output == 'Decline') { $user = wp_get_current_user(); $user->set_role('declined_a_place'); } } add_action( 'wpcf7_before_send_mail', 'wpcf7_before_send_mail_function', 10, 3 );
** and add subscribers_only: true to your form advanced settings **
Forum: Plugins
In reply to: [Contact Form 7] Change user role on submission of formThanks Erik!
It was the “subscribers_only: true” that was my problem. I hadn’t realised that I needed to add that (as my form was already on a page only accessible to logged in users), and without that snippet of code anything to do with logged in users / wp_get_current_user in a function does not work ??All sorted now – thanks ??
Forum: Plugins
In reply to: [Contact Form 7 - PayPal & Stripe Add-on] SCA IntegrationThanks for the update @scottpaterson
Are you able to estimate a timeframe for the update for Stripe?Thanks,
DavidForum: Plugins
In reply to: [Contact Form 7 - PayPal & Stripe Add-on] SCA Integration@barthegabi glad you found a solution. I would be very interested to hear it as the deadline has passed for SCA and no update or reply from plugin author so far, even though one was promised ??
How would I private message you?
Forum: Plugins
In reply to: [Contact Form 7 - PayPal & Stripe Add-on] SCA IntegrationI’m waiting for this as well.
I asked a month or so ago and received this reply:“Our plugins do not yet meet Strong Customer Authentication (SCA) standards that will soon be required by European law later this year.
However September 14th, 2019 is the deadline for this, and we will meet the standard by this date.”
https://wpplugin.org/documentation/strong-customer-authentication-sca/
I followed up again with a ticket yesterday morning asking if it was still going to meet the deadline. No response yet… will let you know if I hear anything.
Not leaving us much time for updating and testing before the deadline! :-/
Does anyone have a backup plan?Hi, did you get this resolved?
I am trying to set up the plugin for the first time, using Office 365 as well, and I get the exact same issue. If you found a solution could you post it here please?
ThanksForum: Plugins
In reply to: [ACF-VC Integrator] Gallery fieldHi Frederik,
It appears that it is my theme that is causing the problem. I am using Impreza theme. When I switched to TwentyNineteen it worked. Is there any technique to get it working with my theme, or is it just bad luck?
In TwentyNineteen I get the 4 images from my gallery field displayed side by side. Is this the correct functionality for the Gallery? Is there any option to display the images as scrolling slider one at a time, or to show thumbnails and click to see a larger version?
I appreciate that may be beyond the remit of this plugin, but I just wondered as I couldn’t see any examples of screenshots for this feature.
Thanks,
DavidForum: Plugins
In reply to: [ACF-VC Integrator] Gallery fieldForum: Plugins
In reply to: [ACF-VC Integrator] Gallery fieldHi Frederik,
Thanks for your help.
ACF-VC Integrator version 1.7.3
WPBakery Page Builder 6.0.3
ACF Pro v5.8.2
Here are the screenshots you requested:
https://ibb.co/M2db6Ww
https://ibb.co/ZcGLDQj
https://ibb.co/KyH8Nn4Thanks