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

Plugin: cf7-data-source (Used by 111 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
b*r*f*o*.info (WP 7.0) F 2026-06-15 20:36:29
s*a*t*n*d*c*t*e.ro F 2026-06-13 17:18:27
m*t*r*i*p*n*a.com (WP 5.7.15) ⚠️ F 2026-06-13 02:02:28
r*d*n*.d*a*d.re (WP 6.6.2) F 2026-06-12 14:44:21
x*l*m*.com (WP 7.0) F 2026-06-11 01:22:02
s*f*5.de F 2026-06-06 11:31:55
a*s*o*o*c*u*.com F 2026-06-03 23:28:40
i*a*s.com 🔓 A 2026-06-03 21:33:32
i*m*e*u.com (WP 7.0) F 2026-06-03 16:18:45
a*b*x*s.com (WP 7.0) F 2026-06-03 06:32:12
t*e*u*u*y*r*v*l*g*n*y.com (WP 6.9.4) F 2026-06-02 08:51:45
t*e*e*t*n*s*u*.com C 2026-06-02 02:29:14
w*n*e*s*r*i*e*5*2*.b*t*n*n*a*e*s*r*i*e.com (WP 6.8.5) F 2026-06-01 17:50:15
s*f*-*i*e.com F 2026-05-31 12:33:05
f*u*d*d*s*.com (WP 6.8.5) F 2026-05-31 02:34:28
j*e*c*d*g*t*l*0*3.l*v*-*e*s*t*.com (WP 6.9.1) F 2026-05-30 22:55:24
f*i*h*a*t*r*a*i*e.com (WP 6.1.3) ⚠️ F 2026-05-30 06:26:15
u*b*a*a*i*.de (WP 7.0) F 2026-05-30 05:42:48
i*a*a.fr (WP 7.0) F 2026-05-29 11:24:02
g*a*v*l*e*i*f*r*a*i*u*.com A 2026-05-29 05:44:22
r*e*s*h.de (WP 6.8.5) F 2026-05-28 17:36:55
f*y*m*t*.jp (WP 7.0) F 2026-05-28 15:38:57
s*r*h*e*s*h*t*k*r*e.com F 2026-05-28 13:57:31
w*n*l*r.org F 2026-05-28 12:41:01
e*t*n*e*y*l*s*e*c*e*o*s*.be (WP 7.0) F 2026-05-28 08:41:15
s*l*r*k*i*e*.de (WP 6.7.5) F 2026-05-28 05:59:41
c*s*a*a*e*i.cz 🔓 F 2026-05-27 21:34:01
t*e*e*a*t*u*.com C 2026-05-27 16:01:51
s*h*e*a*h.at (WP 6.7.5) F 2026-05-27 15:08:34
m*s*i*n*o*u*e*t.com (WP 7.0) F 2026-05-27 11:30:23
e*.m*g*i*.eu F 2026-05-27 02:53:27
d*.m*g*i*.eu F 2026-05-27 02:53:27
e*.m*g*i*.eu F 2026-05-27 02:53:27
n*.m*g*i*.eu F 2026-05-27 02:53:27
f*.m*g*i*.eu F 2026-05-27 02:53:27
s*m*c*m*d*.com F 2026-05-26 21:25:17
h*u*i*g*j*.com F 2026-05-26 19:36:27
m*g*i*.eu F 2026-05-26 11:30:48
t*w*.mx F 2026-05-26 08:00:13
c*r*u*s*c*a*.com A 2026-05-26 02:47:41
m*m*t*r*y*l*s.com (WP 5.7.15) ⚠️ F 2026-05-26 01:09:25
a*i*t*-*a*i*g.com (WP 7.0) F 2026-05-25 23:02:30
h*u*a*b*i*m*i*t*r.de (WP 6.9.1) F 2026-05-25 22:34:11
d*s*o*e*s*t*e*i*e*.biz F 2026-05-25 15:40:48
r*c*p*u*-*o*m*t*o*s.com D 2026-05-24 09:54:24
g*a*a*s*r*n*-*v*n*.com (WP 6.9.4) F 2026-05-24 06:14:05
a*u*g*l*c*a*t.com (WP 7.0) F 2026-05-24 05:56:46
w*s*p*o.de (WP 6.9.1) F 2026-05-24 01:56:11
a*a*n*r*s*n.be (WP 7.0) F 2026-05-23 22:35:19
t*w*b*r*s*.com C 2026-05-23 19:01:40
x*-*s*2*2*-*w*.com (WP 7.0) F 2026-05-23 11:10:27
h*a*t*t*c*.k*i*a*t*e*a*y.com (WP 7.0) F 2026-05-23 08:08:01
o*s*.com (WP 6.9.4) D 2026-05-22 02:12:06
f*n*a*i*n*o*e*t*h*s*a*i*.org (WP 6.9.4) F 2026-05-21 22:52:22
t*r*n*o*a*e*.ca (WP 7.0) 🔓 F 2026-05-21 20:00:46
s*f*f*v*.de F 2026-05-21 16:51:43
o*e*n*t*r*.com F 2026-05-21 01:01:18
s*g*v*s*.com (WP 6.9.1) A 2026-05-19 16:26:02
o*g*r*s*r*s.com (WP 6.8.5) F 2026-05-19 13:45:11
r*p*t*t*o*m*n*g*m*n*c*n*u*t*n*s.com (WP 6.9.4) F 2026-05-19 08:56:23
m*g*i*.it F 2026-05-19 04:27:21
a*a*t*s*a*a*l*i*.com (WP 6.9.4) F 2026-05-18 23:15:00
d*n*h*n*h*a.com (WP 6.8.1) F 2026-05-18 21:46:00
t*a*e*m*l*s*i*h*s.com (WP 6.1.3) ⚠️ F 2026-05-18 11:06:44
a*p*.fr D 2026-05-18 07:52:42
p*r*n*r.e*o*k*l*c*a*p*.com F 2026-05-18 00:19:05
s*r*e*t*s*i*s.com (WP 6.9.4) F 2026-05-17 00:47:17
f*e*.info D 2026-05-16 22:22:40
r*z*r*a*k*f*r*a*.com (WP 6.8.5) 🔓 F 2026-05-16 14:34:49
c*s*t*e*u*h*o*s.com (WP 6.9.4) D 2026-05-16 13:56:16
t*w*o*l*.com F 2026-05-16 11:24:56
l*t*i*g*h*b.c*.uk C 2026-05-16 05:53:59
z*r*a*i*t*i*u*i*n.com (WP 6.9.4) F 2026-05-15 22:39:02
j*e*c*d*g*t*l.com (WP 6.9.4) D 2026-05-15 20:27:33
a*c*i*o*m*z*o*e.it (WP 6.9.4) F 2026-05-15 08:39:23
m*r*n*a*t*c*c.com (WP 6.9.4) F 2026-05-15 03:39:34
e*e*t*o*u*o.hu (WP 6.9.4) F 2026-05-15 03:29:20
a*u*a.v*v*.c*m.bo (WP 6.7.5) F 2026-05-14 20:23:04
b*a*h*o*p*u*.com (WP 6.9.4) F 2026-05-14 20:13:53
c*p*b*r*f*o*.info (WP 6.9.4) F 2026-05-14 18:20:58
m*n*m*n*.0*s*o*a*e.com (WP 6.9.4) F 2026-05-14 14:23:14
c*n*d*e*u*d*r.org (WP 6.9.4) F 2026-05-14 04:19:14
n*e*m*r*n*-*l*c*r*n*c*.com B 2026-05-14 03:09:21
r*d*o*o*m*n*i*c*e*b*u*g.com F 2026-05-14 02:46:52
b*r*f*o*.holiday (WP 6.9.4) F 2026-05-13 23:44:51
r*d*r*.com A 2026-05-13 21:14:22
s*r*h*e*s*h*t*k*r*e*o*l*n*-*i*l.de F 2026-05-13 00:39:06
a*i*h*i*p*o*e*t.com (WP 6.9) D 2026-05-12 20:05:14
m*k*m*n*m*n*.com (WP 6.9.4) F 2026-05-11 16:22:49
p*l*m*d*.com B 2026-05-10 02:29:21
t*o*g*t*e*o*a*i*n*.com D 2026-05-10 00:24:58
o*e*n*t*r*.ch F 2026-05-09 20:30:37
b*n*e*g*r.de (WP 6.9.4) A 2026-05-09 17:36:26
g*o*t*r*t*r*t*x*e.com (WP 6.9.1) F 2026-05-08 17:25:34
l*t*i*g*-*u*.com C 2026-05-08 16:34:02
p*o*e*n*q.com (WP 6.9.4) F 2026-05-08 12:04:57
b*a*h*o*p*u*.pl (WP 6.9.4) F 2026-05-08 06:29:28
b*o*c*w*i*a*s*r*a.at (WP 6.9.4) F 2026-05-08 04:38:49
l*j*b*d*q*a*.com (WP 6.7.2) F 2026-05-07 05:34:22
a*v*n*y*.es (WP 6.8.5) F 2026-05-07 03:17:35

Top 50 Plugins

Plugin Count
elementor 1,868,053
contact-form-7 1,839,138
elementor-pro 1,086,956
woocommerce 843,096
revslider 638,354
jetpack 478,746
js_composer 447,519
wp-rocket 347,732
essential-addons-for-elementor-lite 308,278
gravityforms 300,257
complianz-gdpr 269,093
cookie-law-info 241,775
instagram-feed 235,701
google-site-kit 229,472
sitepress-multilingual-cms 229,144
google-analytics-for-wordpress 220,437
elementskit-lite 217,876
header-footer-elementor 217,110
bluehost-wordpress-plugin 192,383
gutenberg 166,413
gutenberg-core 165,241
cookie-notice 160,147
litespeed-cache 140,996
the-events-calendar 137,971
wpforms-lite 133,159
gtranslate 132,650
astra-sites 122,378
popup-maker 119,986
tablepress 115,666
woocommerce-payments 115,555
coblocks 103,081
honeypot 101,592
astra-addon 98,381
duracelltomi-google-tag-manager 97,229
wp-smushit 96,743
all-in-one-seo-pack 96,258
LayerSlider 94,649
bb-plugin 92,877
megamenu 90,546
premium-addons-for-elementor 89,861
akismet 88,120
mailchimp-for-wp 86,426
cleantalk-spam-protect 85,881
woocommerce-gateway-stripe 85,506
ml-slider 84,529
borlabs-cookie 83,528
wp-pagenavi 82,783
fusion-builder 82,411
ewww-image-optimizer 81,669
smart-slider-3 80,822

Top 50 Themes

Theme Count
hello-elementor 638,947
Divi 528,350
astra 437,220
flatsome 147,608
generatepress 130,535
Avada 128,533
pub 113,783
twentytwentyfour 87,839
oceanwp 86,469
kadence 82,000
sydney 75,827
enfold 74,519
salient 68,746
twentyseventeen 58,508
h4 58,354
bb-theme 56,485
betheme 53,931
blocksy 53,040
cocoon-master 52,732
dt-the7 47,785
twentytwentyfive 46,005
neve 41,043
Avada-Child-Theme 38,823
woodmart 34,431
gox 34,352
bridge 33,904
twentytwentyone 33,206
lightning 32,337
twentytwenty 31,198
swell 29,067
voxel 27,638
Impreza 27,599
bricks 26,946
twentytwentythree 24,833
Newspaper 24,711
sinatra 24,616
kubio 22,257
twentytwentytwo 20,450
uncode 19,869
epik-redesign 19,288
twentysixteen 19,161
storefront 18,527
pro 18,211
Total 15,275
extendable 15,037
yith-wonder 14,135
hello-theme-child-master 13,902
yootheme 13,495
themify-ultra 13,469
hestia 13,422