WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: cf7-data-source (Used by 113 domains)

Data Source for Contact Form 7

👤 codepeople 📦 v1.8.6 🔗 Plugin Homepage

Data Source for Contact Form 7 plugin allows populating the “Contact Form 7” fields (text, email, URL, drop-down menu, …) with data stored in external data sources, like a database, CSV file, URL parameters, users information, post data, taxonomies, Advanced Custom Fields (ACF) – Secured Custom Fields, and JSON objects.

Data Source for Contact Form 7 includes two new controls in the controls bar of Contact Form 7, recordset and recordset field link. The “recordset” control reads the information from the external data source (a database, a CSV file, or any other data source supported), and the “recordset field link” control for linking the recordsets and form fields to populate them with the recordset data.

A form can include several “recordset” fields, and it is possible to link multiple “recordset field link” controls to the same recordset.

The new SQL-Generator module. It generates the database queries in a more conversational style. Just describe the information needed, and get the DB query without any prior database knowledge.

How to create the simplest contact form from our practical examples.

The plugin includes other complementary controls in the controls bar in addition to the “recordset” and “recordset field link”. The “Print Form” button for printing the form area, “Data Table” control for inserting an advanced table with the recordset records, “copy to clipboard” functionality for copying the values of the fields into the clipboard, and the “Search box in dropdown menu” functionality to make easy the selection in long dropdown menus.

Features:

  • Set the information of external data sources available for the Contact Form 7 fields.
  • Easy to use, includes two new controls in the controls bar to define the recordsets and the link fields.
  • Includes the “URL Parameters” data source to populate the form’s fields with the values of the URL parameters.
  • Includes the “Users Information” data source to populate the form’s fields with the users’ information.
  • Includes the “Posts Information” data source to populate the form’s fields with the posts’ data, pages, and custom post types (like the WooCommerce products).
  • Includes the “Taxonomy” data source to populate the form’s fields with taxonomy terms, like categories, posts tags, or any other custom taxonomy.
  • Includes the “Database” data source to populate the form’s fields with the information of a database. Allow defining even complex queries.
  • SQL Generator module. It generates the database queries in a more conversational style.
  • Includes the “Javascript Function” data source to populate the form’s fields with the information returned from a Javascript function.
  • Allows using the fields’ values for filtering the recordset records.
  • Complementary Controls add-on. Includes additional controls and functionalities, such as the “Print Form” button, the addition of the search box to the drop-down menu, copy to clipboard functionality, and Data Table to display the data source records.

Features in Premium version:

  • All features of the free version of the plugin.
  • Includes the “Advanced Custom Fields (ACF) – Secured Custom Fields” data source to fill the form filds with data stored in the Advanced Custom Fields or Secured Custom Fields in post, users, comments, taxonomies, widgets, and options.
  • Includes the “CSV” data source to populate the form’s fields with the data store into a CSV file.
  • Includes the “JSON” data source to populate the form’s fields with the data store into a JSON file. There are hundreds of services whose outputs are JSON objects.
  • PDF Generator add-on. It generates PDF files with the information collected by the form and attaches them to the notification emails (Supports the “Conditional Fields for Contact Form 7” plugin tags in the PDF file content if the “Conditional Fields for Contact Form 7” plugin is installed on the website).
  • Post Generator add-on. It generates new posts (posts, pages, or any custom post) with the information collected by the form.
  • User Registration add-on to convert contact forms into user registration forms.
  • CSV Generator add-on to populate a CSV file with the information collected by the form.
  • JSON Generator add-on to populate a JSON file with the information collected by the form.
  • Server Side add-on to implement server side functions to call from the Recordset controls and get the list of records.

Data Source Fields

Data Source for Contact Form 7 includes two new controls in the controls bar of Contact Form 7, recordset and recordset field link.

The recordset control reads the information from the external data source and makes it available on the form. A recordset field can read one or many records from the data source.

To insert a recordset field in the form, press the “recordset” button in the controls bar. This action opens a dialog to define the recordset.

The insertion dialog includes common attributes for all data sources and specific attributes for the data source selected.

The “recordset field link” control links a recordset field to other fields in the form to populate them with the recordset data.

To insert a link field in the form, press the “recordset field link” button in the controls bar. This action opens a dialog to define the relationship between a recordset and a form’s field.

The link dialog includes the attributes to define the relationship between the recordset field and the form’s fields.

Cases of Use

Get the information of the registered user and populate the form fields for his name and email:









[cf7-recordset id="cf7-recordset-434" type="user" attributes="first_name, user_email" logged="1"]

[cf7-link-field recordset="cf7-recordset-434" field="your-name" value="first_name"]

[cf7-link-field recordset="cf7-recordset-434" field="your-email" value="user_email"]

[submit "Submit"]

Filling a plain text in the form with the first name and last name of the logged user:





[cf7-recordset id="cf7-recordset-434" type="user" attributes="first_name, last_name" logged="1"]

[cf7-link-field recordset="cf7-recordset-434" field="first-name" value="first_name"]

[cf7-link-field recordset="cf7-recordset-434" field="last-name" value="last_name"]

[submit "Submit"]

Populates the list of WooCommerce products and get the price of the selected one:





[cf7-recordset id="cf7-recordset-619" type="database" engine="mysql" query="SELECT ID,post_title,meta_value as price FROM {wpdb.posts} posts, {wpdb.postmeta} meta WHERE posts.post_type='product' AND posts.ID=meta.post_id AND meta.meta_key='_regular_price'"]

[cf7-link-field recordset="cf7-recordset-619" field="menu-719" value="ID" text="post_title"]

[cf7-link-field recordset="cf7-recordset-619" field="number-534" value="price" condition="record['ID']=={field.menu-719}"]

[submit "Submit"]

Using templates to create complex data structures. Displaying the title and excerpt of every published post:

[cf7-recordset id="cf7-posts" type="post" attributes="post_title,post_excerpt" condition="post_status='publish' AND post_type='post'"] [cf7-link-field recordset="cf7-posts" field="posts-list" value="{template.summary}"]

The form includes a template tag to design a complex data structure. To access the records attributes from the template, use {attribute.attribute-name} format. Ex. {attribute.post_title}

You can use the templates for the fields’ values or texts. The format for referring to templates is {template.template-id}. You should replace “template-id” with the id of the template tag. Ex. {template.summary}

[cf7-link-field recordset="cf7-posts" field="posts-list" value="{template.summary}"]

Using Javascript to Access the Recordset Data

The recordset fields trigger the “cf7-recordset” event after receiving the information from the data source, allowing you to access this information with Javascript. In this example, the recordset field reads motivational phrases from a third-party service and displays the first of them into a DIV tag on the form.

Add ons (Extensions)

Complementary Controls add-on

PDF Generator add-on

Post Generator add-on

User Registration add-on

CSV Generator add-on

JSON Generator add-on

Server Side add-on

DomainExposuresHeadersLast Checked
g*o*t*r*t*r*t*x*e.de (WP 6.9.1) F 2026-05-03 17:17:44
p*u*i*l*e*.org F 2026-05-03 13:17:23
1*0*e*v*c*n*.com (WP 6.9.4) A 2026-05-03 12:49:33
s*n*a*r*d*c*e*.c*m.br (WP 6.8.2) D 2026-05-03 07:08:09
n*m*e*i*.net A 2026-05-03 06:25:29
o*t*e*m*x.ru (WP 6.8.3) F 2026-05-02 20:49:30
t*e*v*c*u*.net C 2026-05-02 17:13:32
i*m*e*u.com (WP 6.9.4) F 2026-05-01 23:21:40
a*s*o*o*c*u*.com F 2026-04-30 02:43:22
s*f*-*i*e.com F 2026-04-29 20:08:08
i*a*a.fr (WP 6.9.4) F 2026-04-29 11:17:01
a*b*x*s.com (WP 6.9.4) F 2026-04-29 05:32:45
r*e*s*h.de (WP 6.8.5) F 2026-04-28 17:10:35
f*y*m*t*.jp (WP 6.9.4) F 2026-04-28 15:13:42
s*l*r*k*i*e*.de (WP 6.7.5) F 2026-04-28 05:54:06
t*e*u*u*y*r*v*l*g*n*y.com (WP 6.9.4) F 2026-04-28 00:56:05
t*e*e*t*n*s*u*.com C 2026-04-27 19:04:48
e*t*n*e*y*l*s*e*c*e*o*s*.be (WP 6.9.4) F 2026-04-27 16:40:29
t*e*v*c*u*.com C 2026-04-27 08:23:09
g*a*v*l*e*i*f*r*a*i*u*.com A 2026-04-27 05:25:21
e*.m*g*i*.eu F 2026-04-27 02:28:59
d*.m*g*i*.eu F 2026-04-27 02:28:59
e*.m*g*i*.eu F 2026-04-27 02:28:59
n*.m*g*i*.eu F 2026-04-27 02:28:59
f*.m*g*i*.eu F 2026-04-27 02:28:59
s*h*e*a*h.at (WP 6.7.5) F 2026-04-26 22:17:23
f*u*d*d*s*.com (WP 6.8.5) F 2026-04-26 21:46:58
t*e*e*a*t*u*.com C 2026-04-26 09:27:30
f*i*h*a*t*r*a*i*e.com (WP 6.1.3) ⚠️ F 2026-04-26 02:15:03
s*u*l*o*t*c*.it F 2026-04-25 22:51:41
m*g*i*.eu F 2026-04-25 20:02:52
t*w*.mx F 2026-04-25 16:28:32
c*t*z*n*o*p*u*d*n*.com (WP 6.9.4) F 2026-04-25 01:11:50
d*s*o*e*s*t*e*i*e*.biz F 2026-04-24 23:41:52
c*r*u*s*c*a*.com A 2026-04-24 21:43:00
m*m*t*r*y*l*s.com (WP 5.7.15) ⚠️ F 2026-04-24 21:09:18
h*u*i*g*j*.com F 2026-04-24 03:26:17
w*s*p*o.de (WP 6.9.1) F 2026-04-23 05:20:16
a*a*n*r*s*n.be (WP 6.9.4) F 2026-04-23 01:25:55
m*s*i*n*o*u*e*t.com (WP 6.9.4) F 2026-04-22 19:18:27
x*-*s*2*2*-*w*.com (WP 6.9.4) F 2026-04-22 13:49:56
r*c*p*u*-*o*m*t*o*s.com D 2026-04-22 10:31:38
h*a*t*t*c*.k*i*a*t*e*a*y.com (WP 6.9.4) F 2026-04-22 02:27:46
a*m*n*a*c*r*m*c*.com (WP 6.9.4) F 2026-04-21 17:15:24
a*i*t*-*a*i*g.com (WP 6.9.4) F 2026-04-21 08:31:27
s*r*h*e*s*h*t*k*r*e.com F 2026-04-21 03:43:41
t*w*b*r*s*.com C 2026-04-21 02:12:38
f*n*a*i*n*o*e*t*h*s*a*i*.org (WP 6.9.4) F 2026-04-21 00:01:41
s*f*f*v*.de F 2026-04-20 17:44:09
o*s*.com (WP 6.9.4) D 2026-04-20 15:39:26
a*u*g*l*c*a*t.com (WP 6.9.4) F 2026-04-19 18:59:48
m*g*i*.it F 2026-04-18 06:03:50
r*p*t*t*o*m*n*g*m*n*c*n*u*t*n*s.com (WP 6.9.4) F 2026-04-17 22:07:47
o*e*n*t*r*.com F 2026-04-17 20:57:36
a*p*.fr D 2026-04-17 09:42:28
t*a*e*m*l*s*i*h*s.com (WP 6.1.3) ⚠️ F 2026-04-16 15:39:19
z*r*a*i*t*i*u*i*n.com (WP 6.9.4) F 2026-04-15 09:54:10
a*a*t*s*a*a*l*i*.com (WP 6.9.4) F 2026-04-15 05:43:42
a*c*i*o*m*z*o*e.it (WP 6.9.4) F 2026-04-15 00:54:21
l*t*i*g*h*b.c*.uk C 2026-04-14 21:21:05
e*e*t*o*u*o.hu (WP 6.9.4) F 2026-04-14 20:46:33
o*g*r*s*r*s.com (WP 6.8.5) F 2026-04-14 15:52:42
c*p*b*r*f*o*.info (WP 6.9.4) F 2026-04-14 11:58:46
s*r*e*t*s*i*s.com (WP 6.9.4) F 2026-04-14 11:57:42
r*z*r*a*k*f*r*a*.com (WP 6.8.5) 🔓 F 2026-04-14 01:57:05
c*n*d*e*u*d*r.org (WP 6.9.4) F 2026-04-13 23:12:21
t*e*v*c*u*.org C 2026-04-13 12:34:59
m*r*n*a*t*c*c.com (WP 6.9.4) F 2026-04-13 10:01:24
s*r*h*e*s*h*t*k*r*e*o*l*n*-*i*l.de F 2026-04-12 20:35:01
r*d*o*o*m*n*i*c*e*b*u*g.com F 2026-04-12 01:55:23
r*d*r*.com A 2026-04-11 21:46:06
c*s*t*e*u*h*o*s.com (WP 6.9.4) D 2026-04-11 20:38:09
j*e*c*d*g*t*l.com (WP 6.9.4) D 2026-04-11 16:25:44
b*a*h*o*p*u*.com (WP 6.9.4) F 2026-04-11 03:00:14
m*k*m*n*m*n*.com (WP 6.9.4) F 2026-04-10 14:01:58
n*e*m*r*n*-*l*c*r*n*c*.com A 2026-04-10 09:31:22
a*i*h*i*p*o*e*t.com (WP 6.9) D 2026-04-10 08:45:58
t*o*g*t*e*o*a*i*n*.com D 2026-04-09 22:19:19
o*e*n*t*r*.ch F 2026-04-09 19:49:25
t*w*o*l*.com F 2026-04-09 07:29:26
c*o*m*o*c*e*e.com F 2026-04-09 04:54:26
p*l*m*d*.com B 2026-04-08 23:30:03
b*a*h*o*p*u*.pl (WP 6.9.4) F 2026-04-08 03:27:09
b*o*c*w*i*a*s*r*a.at (WP 6.9.4) F 2026-04-08 02:22:40
c*n*c*e*t*a*a*e*y.com (WP 6.8.5) F 2026-04-06 12:38:53
l*t*i*g*-*u*.com C 2026-04-04 15:49:11
l*j*b*d*q*a*.com (WP 6.7.2) F 2026-04-04 04:01:19
s*m*i*r*i*t*r*a*.com A 2026-04-04 02:55:19
a*d*a*e*v*c*s.com (WP 6.7.3) F 2026-03-31 01:06:46
n*e*m*r*n*-*l*c*r*n*c*.fr 2026-03-27 01:45:29
g*o*t*r*t*r*r*e*t*n.de (WP 6.8.5) 2026-03-26 20:25:46
e*p*r*o*n*v*r*i*a*i*.es 2026-03-26 20:23:32
h*u*a*b*i*-*c*r*i*e*-*a*s*n.de (WP 6.9.4) 2026-03-26 19:46:16
b*n*e*g*r.de (WP 6.9.4) 2026-03-19 19:35:36
s*l*v*t*s*a*h*r*.com (WP 6.9.4) 2026-03-16 02:34:25
s*l*r*k*i*e*.com (WP 6.9.4) 2026-03-16 02:03:52
i*s*g*o*l*m*n*a*e*e*e*o.it 2025-11-12 05:26:29
v*n*z*a*y*u*s.com 2025-11-11 07:49:53
v*r*p*w*k*p*r*.com 2025-11-11 07:29:03
p*r*a*i*i*e*.com 2025-11-09 23:48:19

Top 50 Plugins

Plugin Count
elementor 2,221,345
contact-form-7 2,054,189
elementor-pro 1,261,302
woocommerce 1,033,976
revslider 758,124
js_composer 504,652
jetpack 480,204
wp-rocket 372,639
essential-addons-for-elementor-lite 340,186
gravityforms 280,852
header-footer-elementor 279,924
gutenberg-core 262,381
instagram-feed 261,726
elementskit-lite 261,496
complianz-gdpr 260,966
google-analytics-for-wordpress 257,823
google-site-kit 252,287
cookie-law-info 251,413
sitepress-multilingual-cms 229,400
bluehost-wordpress-plugin 216,220
wpforms-lite 190,854
astra-sites 182,961
litespeed-cache 168,532
gutenberg 160,726
gtranslate 150,787
cookie-notice 148,850
coblocks 141,957
the-events-calendar 134,829
popup-maker 127,065
astra-addon 111,279
bb-plugin 110,791
LayerSlider 108,844
tablepress 108,424
premium-addons-for-elementor 107,955
wp-smushit 107,485
mailchimp-for-wp 105,241
duracelltomi-google-tag-manager 99,202
woocommerce-payments 98,446
cleantalk-spam-protect 95,944
honeypot 95,736
akismet 95,341
woocommerce-gateway-stripe 94,855
creame-whatsapp-me 93,043
megamenu 91,661
fusion-builder 89,827
smart-slider-3 89,430
pro-elements 88,201
custom-fonts 87,133
formidable 87,024
pixelyoursite 86,354

Top 50 Themes

Theme Count
hello-elementor 727,749
Divi 604,045
astra 568,386
pub 177,151
Avada 137,693
generatepress 136,846
flatsome 136,539
h4 101,007
oceanwp 99,936
kadence 90,127
enfold 79,080
salient 76,108
bb-theme 69,545
twentytwentyfour 68,018
blocksy 63,733
cocoon-master 62,997
twentyseventeen 62,138
twentytwentyfive 61,082
betheme 61,022
dt-the7 51,297
woodmart 46,212
neve 44,841
twentytwentyone 38,782
bridge 38,095
Avada-Child-Theme 37,853
gox 35,544
twentytwenty 34,057
lightning 33,395
swell 33,339
twentytwentythree 31,252
bricks 27,949
Impreza 27,867
Newspaper 25,182
twentytwentytwo 24,678
epik-redesign 22,326
pro 20,681
storefront 20,567
uncode 20,488
extendable 20,480
twentysixteen 20,197
sydney 18,670
yith-wonder 18,506
themify-ultra 17,130
Total 16,622
twentyfifteen 15,144
hestia 14,715
porto 14,702
twentynineteen 13,923
yootheme 13,874
thrive-theme 13,781