{"id":39465,"date":"2023-10-04T09:04:14","date_gmt":"2023-10-04T06:04:14","guid":{"rendered":"https:\/\/help-center-reorg.site.strattic.io\/?p=39465"},"modified":"2024-03-18T11:00:09","modified_gmt":"2024-03-18T09:00:09","slug":"static-support-for-contact-form-7","status":"publish","type":"post","link":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/","title":{"rendered":"Static support for Contact Form 7"},"content":{"rendered":"\n<p>Elementor Static Hosting has support for <a href=\"https:\/\/wordpress.org\/plugins\/contact-form-7\/\" target=\"_blank\" rel=\"noreferrer noopener\">Contact Form 7<\/a> (CF7) built in. Below are the CF7 features supported by Elementor Static Hosting websites.<\/p>\n\n\n\n<p>In this article, we will cover:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#h_ec36ed9c0b\">What CF7 features does Elementor Static support?<\/a><\/li>\n\n\n\n<li><a href=\"#h_07cbb77397\">Track the page someone filled out a form on<\/a><\/li>\n\n\n\n<li><a href=\"#h_dbe6b41750\">View form submissions in your WordPress Dashboard<\/a><\/li>\n\n\n\n<li><a href=\"#h_59445216ae\">Redirect to another URL after submission<\/a><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h_ec36ed9c0b\"><strong>Supported features<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Basic fields<\/li>\n\n\n\n<li>File uploads<\/li>\n\n\n\n<li><a href=\"https:\/\/elementor.com\/help\/connect-contact-form-7-to-zapier\/\" target=\"_blank\" rel=\"noreferrer noopener\">Zapier integration<\/a><\/li>\n\n\n\n<li><a href=\"#h_dbe6b41750\" target=\"_blank\" rel=\"noreferrer noopener\">View form submissions in your WordPress Dashboard<\/a><\/li>\n<\/ul>\n\n\n\n<p><strong><em>Note:<\/em><\/strong> Contact Form 7 add-ons, extension plugins, or integrations with platforms like Mailchimp and Salesforce that require interaction with the WordPress database <em>are not supported yet<\/em>. However, you may use our Zapier integration, to connect to another platform <a href=\"https:\/\/elementor.com\/help\/connect-contact-form-7-to-zapier\/\" target=\"_blank\" rel=\"noreferrer noopener\">find out more<\/a>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h_07cbb77397\"><strong>Track which page a user was on when they filled out the form<\/strong><\/h2>\n\n\n\n<p>If you have a contact form in the footer of every page of your website, you might want to know which page someone was on when they filled it out so you could send them a tailored response.<\/p>\n\n\n\n<p><strong>To do this with CF7<\/strong>:<\/p>\n\n\n\n<p><strong>1.<\/strong> <strong>Install<\/strong> and<strong> activate <\/strong>this plugin:<a href=\"https:\/\/wordpress.org\/plugins\/contact-form-7-dynamic-text-extension\/\" target=\"_blank\" rel=\"noreferrer noopener\"> https:\/\/wordpress.org\/plugins\/contact-form-7-dynamic-text-extension\/<\/a><\/p>\n\n\n\n<p><strong>2.<\/strong> Add <strong>[dynamichidden page-url &#8220;CF7_URL&#8221;]<\/strong> to your form.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-8.png\" alt=\"\" class=\"wp-image-37554\"\/><\/figure>\n\n\n\n<p><strong>3. <\/strong>Click <strong>Save<\/strong>.<\/p>\n\n\n\n<p><strong>4. <\/strong>In the <strong>Mail<\/strong> tab, add <strong>[page-url]<\/strong> to your submission email, and click <strong>Save.<\/strong><\/p>\n\n\n\n<p><strong>5. <\/strong>Test your form in WordPress.<\/p>\n\n\n\n<p><strong>6. <\/strong>Publish your site to <strong>Live <\/strong>or <strong>Preview <\/strong>using a <a href=\"https:\/\/elementor.com\/help\/full-publish\/\" target=\"_blank\" rel=\"noreferrer noopener\">Full publish<\/a>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h_dbe6b41750\"><strong>View form submissions in your WordPress Dashboard<\/strong><\/h2>\n\n\n\n<p><strong>1.<\/strong> In WordPress, navigate to <strong>Contact<\/strong> &gt; <strong>Form Submissions<\/strong>.<br><strong>2.<\/strong> From the drop down menu, select the one of your forms.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-93-1024x482.png\" alt=\"\" class=\"wp-image-37715\"\/><\/figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h_59445216ae\"><strong>Redirect to another URL after submission<\/strong><\/h2>\n\n\n\n<p>By default, Contact Form 7 redirects to the same URL as the form&#8217;s URL after submission. You can, however, make it redirect to another URL, such as a &#8220;thank you&#8221; page, after submission.<\/p>\n\n\n\n<p>The simplest way is utilizing Contact Form 7\u2019s custom DOM event to run JavaScript. The following is an example of script that redirects you to another URL when the <code>wpcf7mailsent<\/code> event occurs:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script&gt;<br>document.addEventListener( 'wpcf7mailsent', function( event ) {<br>  location = 'http:\/\/example.com\/';<br>}, false );<br>&lt;\/script&gt;<\/code><\/pre>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Embed this snippet into your theme\u2019s template file. <\/li>\n\n\n\n<li>Replace the <em><a href=\"http:\/\/example.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/example.com\/<\/a><\/em> in the code to the URL you want to redirect to. <\/li>\n\n\n\n<li>After the code has been added, run a <a href=\"https:\/\/elementor.com\/help\/full-publish\/\" target=\"_blank\" rel=\"noreferrer noopener\">Full Publish<\/a> to your live environment.<\/li>\n<\/ol>\n","protected":false},"excerpt":{"rendered":"<p>Elementor Static Hosting has support for Contact Form 7 (CF7) built in. Below are the CF7 features supported by Elementor Static Hosting websites. In this article, we will cover: Supported features Note: Contact Form 7 add-ons, extension plugins, or integrations with platforms like Mailchimp and Salesforce that require interaction with the WordPress database are not [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_elementor_kustomer_id":["65f802972ae62f6e0cd319b8"],"footnotes":""},"categories":[1498],"tags":[],"class_list":["post-39465","post","type-post","status-publish","format-standard","hentry","category-deprecated"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Static support for Contact Form 7 | Elementor<\/title>\n<meta name=\"description\" content=\"Learn everything about Static support for Contact Form 7 in this article from Elementor&#039;s Knowledge Base. Get Elementor tips &amp; more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Static support for Contact Form 7 | Elementor\" \/>\n<meta property=\"og:description\" content=\"Learn everything about Static support for Contact Form 7 in this article from Elementor&#039;s Knowledge Base. Get Elementor tips &amp; more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\" \/>\n<meta property=\"og:site_name\" content=\"Help\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-04T06:04:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-18T09:00:09+00:00\" \/>\n<meta name=\"author\" content=\"Cliff Churgin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Cliff Churgin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\"},\"author\":{\"name\":\"Cliff Churgin\",\"@id\":\"https:\/\/elementor.com\/help\/#\/schema\/person\/c45726ca48a077e09198d78da3bc94d3\"},\"headline\":\"Static support for Contact Form 7\",\"datePublished\":\"2023-10-04T06:04:14+00:00\",\"dateModified\":\"2024-03-18T09:00:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\"},\"wordCount\":358,\"publisher\":{\"@id\":\"https:\/\/elementor.com\/help\/#organization\"},\"image\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-8.png\",\"articleSection\":[\"Deprecated\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\",\"url\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\",\"name\":\"Static support for Contact Form 7 | Elementor\",\"isPartOf\":{\"@id\":\"https:\/\/elementor.com\/help\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-8.png\",\"datePublished\":\"2023-10-04T06:04:14+00:00\",\"dateModified\":\"2024-03-18T09:00:09+00:00\",\"description\":\"Learn everything about Static support for Contact Form 7 in this article from Elementor's Knowledge Base. Get Elementor tips & more.\",\"breadcrumb\":{\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage\",\"url\":\"\",\"contentUrl\":\"\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Help Center\",\"item\":\"https:\/\/elementor.com\/help\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deprecated\",\"item\":\"https:\/\/elementor.com\/help\/deprecated\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Static support for Contact Form 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/elementor.com\/help\/#website\",\"url\":\"https:\/\/elementor.com\/help\/\",\"name\":\"Elementor\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/elementor.com\/help\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/elementor.com\/help\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/elementor.com\/help\/#organization\",\"name\":\"Elementor\",\"url\":\"https:\/\/elementor.com\/help\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/elementor.com\/help\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2025\/06\/images.png\",\"contentUrl\":\"https:\/\/elementor.com\/help\/wp-content\/uploads\/2025\/06\/images.png\",\"width\":225,\"height\":225,\"caption\":\"Elementor\"},\"image\":{\"@id\":\"https:\/\/elementor.com\/help\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/elementor.com\/help\/#\/schema\/person\/c45726ca48a077e09198d78da3bc94d3\",\"name\":\"Cliff Churgin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/elementor.com\/help\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2957ab51166ce1ab4527af621d95bed3b7002ffaed172a69d8d0fb052d28c700?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2957ab51166ce1ab4527af621d95bed3b7002ffaed172a69d8d0fb052d28c700?s=96&d=mm&r=g\",\"caption\":\"Cliff Churgin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Static support for Contact Form 7 | Elementor","description":"Learn everything about Static support for Contact Form 7 in this article from Elementor's Knowledge Base. Get Elementor tips & more.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/","og_locale":"en_US","og_type":"article","og_title":"Static support for Contact Form 7 | Elementor","og_description":"Learn everything about Static support for Contact Form 7 in this article from Elementor's Knowledge Base. Get Elementor tips & more.","og_url":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/","og_site_name":"Help","article_published_time":"2023-10-04T06:04:14+00:00","article_modified_time":"2024-03-18T09:00:09+00:00","author":"Cliff Churgin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Cliff Churgin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#article","isPartOf":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/"},"author":{"name":"Cliff Churgin","@id":"https:\/\/elementor.com\/help\/#\/schema\/person\/c45726ca48a077e09198d78da3bc94d3"},"headline":"Static support for Contact Form 7","datePublished":"2023-10-04T06:04:14+00:00","dateModified":"2024-03-18T09:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/"},"wordCount":358,"publisher":{"@id":"https:\/\/elementor.com\/help\/#organization"},"image":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage"},"thumbnailUrl":"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-8.png","articleSection":["Deprecated"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/","url":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/","name":"Static support for Contact Form 7 | Elementor","isPartOf":{"@id":"https:\/\/elementor.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage"},"image":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage"},"thumbnailUrl":"https:\/\/elementor.com\/help\/wp-content\/uploads\/2023\/09\/image-8.png","datePublished":"2023-10-04T06:04:14+00:00","dateModified":"2024-03-18T09:00:09+00:00","description":"Learn everything about Static support for Contact Form 7 in this article from Elementor's Knowledge Base. Get Elementor tips & more.","breadcrumb":{"@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#primaryimage","url":"","contentUrl":""},{"@type":"BreadcrumbList","@id":"https:\/\/elementor.com\/help\/static-support-for-contact-form-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Help Center","item":"https:\/\/elementor.com\/help\/"},{"@type":"ListItem","position":2,"name":"Deprecated","item":"https:\/\/elementor.com\/help\/deprecated\/"},{"@type":"ListItem","position":3,"name":"Static support for Contact Form 7"}]},{"@type":"WebSite","@id":"https:\/\/elementor.com\/help\/#website","url":"https:\/\/elementor.com\/help\/","name":"Elementor","description":"","publisher":{"@id":"https:\/\/elementor.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/elementor.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/elementor.com\/help\/#organization","name":"Elementor","url":"https:\/\/elementor.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elementor.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/elementor.com\/help\/wp-content\/uploads\/2025\/06\/images.png","contentUrl":"https:\/\/elementor.com\/help\/wp-content\/uploads\/2025\/06\/images.png","width":225,"height":225,"caption":"Elementor"},"image":{"@id":"https:\/\/elementor.com\/help\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/elementor.com\/help\/#\/schema\/person\/c45726ca48a077e09198d78da3bc94d3","name":"Cliff Churgin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/elementor.com\/help\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2957ab51166ce1ab4527af621d95bed3b7002ffaed172a69d8d0fb052d28c700?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2957ab51166ce1ab4527af621d95bed3b7002ffaed172a69d8d0fb052d28c700?s=96&d=mm&r=g","caption":"Cliff Churgin"}}]}},"_links":{"self":[{"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/posts\/39465","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/comments?post=39465"}],"version-history":[{"count":1,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/posts\/39465\/revisions"}],"predecessor-version":[{"id":39466,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/posts\/39465\/revisions\/39466"}],"wp:attachment":[{"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/media?parent=39465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/categories?post=39465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/elementor.com\/help\/wp-json\/wp\/v2\/tags?post=39465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}