Rich Text Editor Field for Contact Form 7
Add Rich Text Editor field for Contact Form 7 using WordPress wp-editor.
Maintenance 12/1003544d since update
Active installs
300
Downloads
7,207
Reviews
7
Age
10.0y
Tagscontact formcontact form 7contactcf7cf7 field
Plugin info
Total downloads: 7,207
Active installs: 300
Total reviews: 7
Average rating: 4.1
Support threads opened: 1
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 4/19/2016 (3544 days ago)
Added to WordPress: 12/18/2015 (10 years old)
Minimum WordPress version: 4.3.1
Tested up to WordPress version: 4.5.28
Minimum PHP version: f
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 3544 days ago • Support resolved 0% • 7 reviews
12/100
Is Rich Text Editor Field for Contact Form 7 abandoned?
Possibly abandoned (last update 3544 days ago).
Compatibility
Requires WordPress: 4.3.1
Tested up to: 4.5.28
Requires PHP: f
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
No similar plugins found yet.
Description
Rich Text Editor Field for Contact Form 7 allows you to add WordPress content editor as a field to contact form 7. This feature allows you to use HTML tags available in WordPress editor to provide complex content and format them according to your preference.
Please refer the Documentation and Usage instructions for using Rich Text Editor Field.
Installation
- Upload the plugin files to the
/wp-content/plugins/rich-text-editor-contact-form7directory, or install the plugin through the WordPress plugins screen directly. - Activate the plugin through the ‘Plugins’ screen in WordPress
- Use the Rich Text Field in Contact Form 7 – form creation screen.
- Follow the Documentation and Usage.
Frequently Asked Questions
No FAQ available
Review feed
nimeshrmr
Supports WordPRess editor for Contact Form 7
supports WordPRess editor for Contact Form 7 latest versions
onico0
Error in dashboard
It's a pity, it generates this kind of errors in the backend and broke some javascript functionality...
- Uncaught TypeError: Cannot set property 'visibility' of undefined
- TypeError: null is not an object (evaluating 'e.style[a]=s[a]')
I use Elegant Extra Theme with Divi Builder.
Why not disable the implementation of all you tags in the backend as the rich editor is only needed on the frontend ?
edit :
solved by creating a mu-plugin with the followed code
$current_url = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] . '';
// listener for the thin load
/* if ( is_admin() ) {
add_filter( 'option_active_plugins', 'disable_these_plugins' );
} */
if(is_admin()) {
global $pagenow;
//echo $pagenow;
if(strstr( $current_url, 'post.php' ) || strstr( $current_url, 'edit.php' ) || strstr( $current_url, 'post-new.php' )){
add_filter( 'option_active_plugins', 'disable_these_plugins' );
}
}
function disable_these_plugins( $plugins ) {
$plugins_not_needed = array(
'rich-text-editor-field-for-contact-form-7/rich-text-editor-contact-form7.php'
);
foreach ( $plugins_not_needed as $plugin ) {
$key = array_search( $plugin, $plugins );
if ( false !== $key ) {
unset( $plugins[ $key ] );
}
}
return $plugins;
}
Changelog
1.1
- Tested compatibility with WP 4.5
1.0
- Intial version

