CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 08:48:09 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
vary: Accept-Encoding
strict-transport-security: max-age=604800
strict-transport-security: max-age=31536000; includeSubDomains
x-content-type-options: nosniff
x-content-type-options: nosniff
x-xss-protection: 1; mode=block
x-xss-protection: 1; mode=block
x-frame-options: SAMEORIGIN
x-frame-options: SAMEORIGIN
referrer-policy: no-referrer
referrer-policy: strict-origin-when-cross-origin
link: ; rel="https://api.w.org/"
link: ; rel="alternate"; title="JSON"; type="application/json"
link: ; rel=shortlink
fastcgi-cache: MISS
report-to: {"group":"cf-nel","max_age":604800,"endpoints":[{"url":"https://a.nel.cloudflare.com/report/v4?s=eosxAc4bRNF2fBFAudrGhgOkSS33ytvDZ6h90XdpwysQVHTYw%2BTYeNMm9j%2F9pfN6P3ELNp9oHgftRP6e8JX9uqGyIuXRGAV36yOBDFUUB08oH4C4"}]}
cf-cache-status: DYNAMIC
nel: {"report_to":"cf-nel","success_fraction":0.0,"max_age":604800}
content-encoding: gzip
cf-ray: 98d556225f101712-BLR
gform_is_form_editor - Gravity Forms Documentation
gform_is_form_editor
Description
Allows pages to be marked as Form Editor pages or not.
Usage
add_filter( 'gform_is_form_editor', 'your_function_name', 10, 1 );
Parameters
- $is_form_editor bool
Whether the page is a form editor page or not.
Example
add_filter( 'gform_is_form_editor', 'set_editor', 10, 1 ); function set_editor( $is_form_editor ){ return false; }
Placement
This code should be placed in the functions.php file of your active theme.
Since
This filter was added in Gravity Forms version 1.9.9.
Source Code
This filter is located in GFCommon::is_form_editor() in common.php.