Title: marvelcreative's Replies | WordPress.org

---

# marvelcreative

  [  ](https://wordpress.org/support/users/marvelcreative/)

 *   [Profile](https://wordpress.org/support/users/marvelcreative/)
 *   [Topics Started](https://wordpress.org/support/users/marvelcreative/topics/)
 *   [Replies Created](https://wordpress.org/support/users/marvelcreative/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/marvelcreative/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/marvelcreative/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/marvelcreative/engagements/)
 *   [Favorites](https://wordpress.org/support/users/marvelcreative/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/marvelcreative/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/marvelcreative/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Registration - Contact Form 7] Can I use your shortcodes in normal CF7 emails?](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/#post-15410443)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] Not receiving notifications back from Stripe (or support)](https://wordpress.org/support/topic/not-receiving-notifications-back-from-stripe-or-support/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/not-receiving-notifications-back-from-stripe-or-support/#post-15068425)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Addon Paypal and Stripe With Contact Form 7] send email after successful payment](https://wordpress.org/support/topic/send-email-after-successful-payment/)
 *  [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/send-email-after-successful-payment/#post-14973977)
 * This is what I need as well. This would make the plugin a lot more flexible.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Stripe Integration](https://wordpress.org/support/topic/stripe-integration-21/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/stripe-integration-21/#post-14973543)
 * Sorry, my bad. I updated and now I see it.
    Thanks for your reply.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Registration - Contact Form 7] Can I use your shortcodes in normal CF7 emails?](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/#post-14957490)
 * Hi Crish, the contact form on your website does not work.
    I have emailed you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Frontend Registration - Contact Form 7] Can I use your shortcodes in normal CF7 emails?](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/can-i-use-your-shortcodes-in-normal-cf7-emails/#post-14946807)
 * Hi Crish,
 * Yes I still need help please.
    I cannot find your email address in your profile…
 * Kind Regards,
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Change user role on submission of form](https://wordpress.org/support/topic/change-user-role-on-submission-of-form/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/change-user-role-on-submission-of-form/#post-14784265)
 * Here 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Change user role on submission of form](https://wordpress.org/support/topic/change-user-role-on-submission-of-form/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [4 years, 10 months ago](https://wordpress.org/support/topic/change-user-role-on-submission-of-form/#post-14784253)
 * Thanks 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] SCA Integration](https://wordpress.org/support/topic/sca-integration-2/)
 *  [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/sca-integration-2/#post-11939661)
 * Thanks for the update [@scottpaterson](https://wordpress.org/support/users/scottpaterson/)
   
   Are you able to estimate a timeframe for the update for Stripe?
 * Thanks,
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] SCA Integration](https://wordpress.org/support/topic/sca-integration-2/)
 *  [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/sca-integration-2/#post-11936028)
 * [@barthegabi](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7 - PayPal & Stripe Add-on] SCA Integration](https://wordpress.org/support/topic/sca-integration-2/)
 *  [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/sca-integration-2/#post-11922306)
 * I’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/](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?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post SMTP – Complete Email Deliverability and SMTP Solution with Email Logs, Alerts, Backup SMTP & Mobile App] Error with Office 365](https://wordpress.org/support/topic/error-with-office-365/)
 *  [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/error-with-office-365/#post-11897888)
 * 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? Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF-VC Integrator] Gallery field](https://wordpress.org/support/topic/gallery-field/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/gallery-field/#post-11762390)
 * Hi 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,
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF-VC Integrator] Gallery field](https://wordpress.org/support/topic/gallery-field/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/gallery-field/#post-11755271)
 * Hi Frederik,
 * Yes I am using the Integrator element.
 * [https://ibb.co/WzHQf4M](https://ibb.co/WzHQf4M)
    [https://ibb.co/41srFy8](https://ibb.co/41srFy8)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ACF-VC Integrator] Gallery field](https://wordpress.org/support/topic/gallery-field/)
 *  Thread Starter [marvelcreative](https://wordpress.org/support/users/marvelcreative/)
 * (@marvelcreative)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/gallery-field/#post-11754755)
 * Hi 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/M2db6Ww)
   [https://ibb.co/ZcGLDQj](https://ibb.co/ZcGLDQj) [https://ibb.co/KyH8Nn4](https://ibb.co/KyH8Nn4)
 * Thanks

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/marvelcreative/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/marvelcreative/replies/page/2/?output_format=md)