This documentation page is for Quform version 1 and may not be applicable for Quform 2 click here to visit the documentation for Quform 2.
Problem #1 – form is still visible
We added code to check if your theme supports this shortcode and we use it automatically, which solves many issues with theme compatibility. If you see these shortcodes on the page that means our plugin has wrongly detected that it should use them, so we need to force the plugin not to use them.
Quform version 1.7.10 or later
Go to Quform → Settings on the WordPress menu, and tick the option Disable [raw] tag detection and Save.
Quform version 1.7.9 or earlier
Add the following code to the wp-content/themes/YOUR_THEME/functions.php file (or create a plugin for it).
1 | add_filter('iphorm_needs_raw_tag', '__return_false'); |
add_filter('iphorm_needs_raw_tag', '__return_false');
Problem #2 – form is not visible
This problem usually happens with large forms, the size of the form is exceeding the limit of your theme’s [raw] function. To increase this limit, add the following code to your wp-config.php file.
1 2 | // Increase PCRE backtrack limit @ini_set('pcre.backtrack_limit', 1000000); |
// Increase PCRE backtrack limit @ini_set('pcre.backtrack_limit', 1000000);