WPForms Detector
Check any public website to see whether it uses WPForms.
Public signal scan
Fast lookup
No signup required
Scan a website
Enter a URL and Stackcrawler will inspect public technology signals.
Websites using WPForms
Browse real website examples detected with WPForms.
View examplesMore WordPress detectors
Compare related tools and identify the wider stack behind a website.
Browse detectorsWhat we check
Stackcrawler looks for public page markers, scripts, platform fingerprints, metadata, and other visible implementation clues.
How can you detect if a website uses WPForms?
Detecting if a website uses WPForms involves looking for specific indicators in the website’s source code. WPForms is a popular plugin for WordPress that adds contact forms and other form functionalities to websites.
Here’s a step-by-step guide on how to check for WPForms:
- Open the Page Source: Right-click on the webpage and select “View Page Source” or press
Ctrl+U(Windows) orCmd+Option+U(Mac) to open the page’s source code. - Search for the WPForms Plugin Path: Use
Ctrl+F(Windows) orCmd+F(Mac) to open the search function and look for:wp-content/plugins/wpforms/: This path indicates that WPForms is installed on the website.
- Look for WPForms-Specific JavaScript Files: Search for keywords related to WPForms in the source code. Look for:
wpforms.js: This is a JavaScript file associated with WPForms functionality.
- Check for WPForms Shortcodes: If the website uses shortcodes for forms, look for:
[wpforms id="X"]: This shortcode renders a WPForms form where “X” is the form ID.
- Inspect Form Markup: Find the HTML code for the forms on the webpage. Look for specific attributes:
class="wpforms-form": This class indicates that the form is generated by WPForms.
- Look for CSS References: WPForms often includes specific CSS styles. Search for:
.wpforms-container: This class is typically used in the styling of WPForms.
- Check for Form Submissions via AJAX: WPForms supports AJAX form submissions. Look for JavaScript code related to AJAX with references to WPForms, such as:
- AJAX calls that include
wpformsin the request URL.
- AJAX calls that include