-
Notifications
You must be signed in to change notification settings - Fork 10
Supports CF7
Contact Form 7 is one of the most popular plugin to create form to email functionality. Once the form is filled by site visitor, the plugin sends an email to site administrator with form data. Unfortunately, mail can be lost because of several reasons like server fail, hosting spam filter, internet provider mail port block, SMTP fail in the middle of the transfer, etc. In this case you will lost your request.
Long time ago there was a plugin CF7DB, which saved form data into a site database and displayed data inside WordPress admin interface. This plugin wasn't updated for a long time and then was deleted completely.
Inside the framework we included very small component, which stores form requests as separate Custom Post
Type. You can view a list of form requests under new Forms → Requests
menu.
To enable this feature all you need is to create an instance of Contact_Form7
inside functions.php
or
your Theme
class inside support_plugins()
method:
<?php
\JustCoded\WP\Framework\Supports\Contact_Form7::instance();