wp contact form 7 save form to database & mail also - wordpress

I want to add a wp7 contact form in wordpress site but I want it to mail as well as save form filled data in database table as well. Is there any way I can make it happen.

There are multiple plugins that are doing saving in the database. You can find them here.
If you want to save in custom database or table you can use action 'wpcf7_mail_sent' to get values and everything then to process to destination.

Related

WordPress Avada Form - How can I save data to different table?

I created a form using Avada Form builder to create an online application. Instead of saving the data in the default WordPress tables, I would like to save the data to a different table. I'm not sure how to accomplish this. Is there an Avada Hook or Filter that can be used? Should I use the AJAX Send to URL or the POST with Form Submission URL? If so, how?
Use case: The user enters some data on a form and submits it. The administrator retrieves that data and adds more information.
Any help would be greatly appreciated!

I need plugin which can make my each unique employee upload his work

I need plugin which can make my each unique employee upload his work like only media or client can submit job requirement with only 3 field title ,media,description without login into wordpress dashboard like this http://web1expert.com/test/client-submission-form/ & each client is redirected to dat work without login into dashboard
This is very broad topic to be discussed here. Be more specific if you are facing any particular issues.
Or you can use Upwork for posting this job to hire someone to complete it up.
try (visual form builder)
with this plugin you can create field with file upload field
but this is not Exactly what you want

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)

Create a contact form and display submissions as searchable directory

I want to create a directory that users can submit their data (name, email, phone) to and see a searchable directory. Ninja Forms was good for submitting data, but had no (free) option to display the data in a searchable format. I tried using Contact Form DB, but the displayed results weren't searchable.
The Gravity Forms plugin has an API that will allow you to access submitted data. Here is a similar query to your own:
https://wordpress.stackexchange.com/questions/82791/how-do-i-show-data-from-gravity-forms-in-my-template
That said, it would probably be just as easy (if not easier) to code this outside the WordPress framework. Create a new table in the database for user data, then create the corresponding form and PHP form handler to write the details to the table.
WordPress provides a class for explicitly accessing the database:
http://codex.wordpress.org/Class_Reference/wpdb
You would then simply add your search code into a page template. I hope this helps!

How to show webform submitted data in drupal7

i want to display the webform submitted data in drupal 7 and that survey only admin can see.After the submission i want to show the submitted data to admin in table format and also wants to download that data in excel Sheet format. What approach i should follow.
you can call this function which is called after the data is inserted in the webform.
This hook will provide you the node id and and the submission id. Using this submission id you can access all the data which you have inserted and can perform your task inside it.
function hook_webform_submission_insert($node, $submission) {
//do your task
}
Install this module http://drupal.org/project/webform_report it will be displayed in table format and also you can customize the report & also It will create separate content type.
Below is the screen shot for webform report, you can also view, edit & delete from report itself.
hope your requirement will match this!!!
Hmmm.. I thought the native table generator pretty functional. It includes a download button.
login as admin, then go to: Content --> Webforms Tab --> Your webform --> Submissions (or better = TABLES ! ) to see what the users have submitted. At the far right side of the TABLE display is a download button. With this selection you get EVERYTHING downloaded in a convenient XL sheet.
I know I'm a late comer to this party, and perhaps this enhancement is a late addition to the software. Solution offered here to aid others in the future.

Resources