Wordpress Two Steps Autoresponders Form Submition - wordpress

Need some wordpress gurus insight here!
Basically, I've a plugin call Contact Form 7 to display a form on my site.
May I know how can I achieve these steps :-
User click submit, they will auto-receive a mail containing activation link.
User click the activation link, they will auto-receive another email to containing some text to ask them to upload a picture.
On my end, I'll only receive the lead only when the user completing the 2nd step.
Is it possible to do it with wordpress plugins? Or I need some external api or something?

You can get more information to set up the points for Autoresponders Form Submission
Go Through the link - https://www.formget.com/send-copy-of-message-to-form-submitter-use-auto-responder/

Related

Transferring info from one WordPress form to one on a following page

I’m making a form for my WordPress page where a person would input their contact info to receive email about an event. After they do that, I’d like to have it so, after inputting their info, they'd be led to the next page with a list of other events they could check off to receive info about to also get updates on, but without having to input their contact information again. Any ideas on how to do that?
I’m making a form for my WordPress page where a person would input their contact info to receive email about an event. After they do that, I’d like to have it so the next page is a list of other events they could check off to receive info about to also get updates on, but without having to input their contact information again. Any ideas on how to do that?

Wordpress - Proper way to manage custom users

I have a site in Wordpress.
The functionality I need is such that, I can create 'users' of the site. These users have no purpose editing the Wordpress site in any way, and don't need to know we're even using the wordpress platform.
These users need to be able to edit their contact info and upload/view/swap out their own resume, using a page that I will build for them (not the wp-admin dashboard in any way). This resume will be PDFs and WordDocs.
At first I thought I'd just use the built in Wordpress Users and Roles that Wordpress offers. However, I'm not sure how I would attach resumes to that user, and let that user edit their own resume. I know I can use the 'user_contactmethods' hook to attach basic fields. However, I'd be trying to attach a link to a file that Wordpress hosts, and would need to be able to replace that file on a whim, in php. Also, my goal is to prevent them from ever using the Wordpress dashboard or editing tools.
Next, I thought I could create a custom post type for a 'SiteUser'. That would make it easy to manage a PDF/WordDoc attached to that post type. Also, that user wouldn't have any way to access the Wordpress stuff. Before I do that though, I wanted to ask on here if this really is the right way to do this.
This solution feels hacky.
Can I get some proposed solutions to this problem that could be perceived as 'the proper way'?
Thanks
Here is a rough idea of what you are looking to do.
Step 1
Create the user role for these new users
Step 2
Set the permission for them and disable backend access and redirect all access of those roles to a custom page /account/
Step 3
Use Advance custom fields plugin to create some custom fields on the user meta. (text, file, image)
Step 4
Apply some login logic/form and Link to a /account/edit-info/ custom page with the acf frontend form. https://www.advancedcustomfields.com/resources/create-a-front-end-form/
Step 5
Use these info to display somewhere on the /account/ page
Optional
Using gravity forms instead to manage user data entry gives better control but requires more coding, and a better user experience.
Front-end Admin Steps
Repeat Step 1-2
Loop site user and list them and their custom field files Have a button that opens a Gravity form with the user ID text field pre-populated and hidden, and have a file uploader element.
Add backend hooks after validation directly replace the user meta
containing the file path or ID (however you choice to store it in
Advance custom fields)

how to create form in dashboard which should be reflected at front end?

I am working on word press project. My task is to create a module where user can create a feedback form in admin panel. And this feedback form is going to be reflected in front end, so that all user can fill it.
Please tell me what is the exact way to achieve this.
I Don't want code, just a guidance regarding plugins or wordpress api which can be helpful for me in this task.
Thanks
Have a look at Contact Form 7.
In the admin Panel you can create Forms that can be inserted in your Pages with shortcode.

How to create a user input form with WordPress?

I'm completely new to the whole WordPress scene so I kind of don't know the "WordPress way" of doing the desired task:
Create a form where a user would fill in some details (such as name, surname, upload a video or post a youtube iframe link)
Submit it, once it's done - an admin must verify that everything has been filled out correctly and after that the video can be seen on the website.
Should I write a plugin of some sort that would do that or how does it happen?
Thank you.
The Gravity Forms plugin allows you to do exactly what you're looking to do. With it, you can set up a form that creates a post and sets it to be 'Pending Review' in WordPress. This tutorial contains everything you need to know about what you'll need to do.
If you want to create a Custom Post Type (ie. 'User Page') to better separate user submissions, you'll need to employ this special add-on (as mentioned in the tutorial above).

How do I make a contact form 7 in wordpress

I want to Make a contact form in wordpress including input fields and some checkboxes , I want the form data to go to my email address.
How do I make one from scratch ?
Go to the wordpress dashboard and click "Contact" on the left hand side.
Click add new.
In this area you have two boxes, form and mail. Form is what is displayed on your website and mail generates what is sent to you (ie the e-mail address the form will be sent to and the default template of that e-mail).
Directing mail to your e-mail address is very simple - just change the "To" box to your e-mail.
The form box is completed by generating tags using the plugin. For example, to generate a file upload box you click generate tag -> file upload -> and change the options within (required field, etc) and then paste the given code to the form and the mail boxes where it directs you to.
Once this process is finished for all forms click save and copy the generated shortcode to the page you want to include this contact form in.
Hope this answers your question,
Paul
You can find all you need in their documentation.
Contact Form 7 Documentation

Resources