Code

Support for Storage for Contact Form CF7

Support for Storage for Contact Form CF7

By
Cart 2,336 sales

Preseto supports this item

Supported

This author's response time can be up to 2 business days.

Popular questions for this item

Excel is showing all entries in one column in the CSV export

The version 1.5.0 now includes a dropdown selector for choosing the delimiter character before doing the export. Try selecting comma, semicolon and tab to determine which is the preferred separator by your version of Excel.

Specify the CSV delimiter when exporting Contact Form 7 entries

How to exclude columns from the export CSV

Each form has dedicated storage settings under the “Storage” tab to exclude form fields from the CSV export:

Contact Form 7 storage settings

How to enable form capture only for a specific form?

We’re currently working on a simple interface to toggle the capture in form settings. However, that feature is still in the development. Therefore, you need to use a PHP filter in the functions.php of your theme to do this:


// Capture submissions only for specific form IDs.
add_filter( 'cf7_storage_skip_capture', function( $skip, $form ) {
    $capture_form_ids = array(
        12,
        23,
        34,
    );

    if ( ! in_array( $form->id(), $capture_form_ids ) ) {
        $skip = true;
    }

    return $skip;
}, 10, 2 );

Contact the author

This author provides limited support for this item through this item's comments.

Item support includes:

  • Availability of the author to answer questions
  • Answering technical questions about item’s features
  • Assistance with reported bugs and issues
  • Help with included 3rd party assets

However, item support does not include:

  • Customization services
  • Installation services

View the item support policy

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey