Rating: 5 stars
Great plugins last and this one still worsk well.
]]>Rating: 5 stars
It’s a good plugin, but being so old it’s got its share of problems already. Here’s an updated version that adds Polylang compatibility (by Rocco Marco Guglielmi), composer.json
and a hook to change passed WP_editor args.
Rating: 4 stars
Nice, straightforward plugin.
Replacing the public function save_filters() function with the following appears to sanitize the input:
public function save_filters() {
// Contributor level user or higher required
if ( !current_user_can('edit_posts') )
return;
//disable WordPress sanitization to allow more than just $allowedtags from /wp-includes/kses.php
remove_filter('pre_user_description', 'wp_filter_kses');
//add sanitization
add_filter( 'pre_user_description', 'wp_filter_post_kses');
}
Credit for the sanitize snippet to: https://badlywired.com/2015/03/allow-html-in-user-description/ (although it may be seen on 1 or 2 other posts/sites).
]]>Rating: 5 stars
Thanks!
]]>Rating: 4 stars
This plugin is extremely convenient but you should change a line of code before using it.
File: visual-editor-biography.php
Line 137: remove_all_filters(‘pre_user_description’);
This allows you to use HTML by removing all filters, making it impossible for other plugins to adjust anything AND more important, it allows users to run <script> tags. Use this instead:
remove_filter('pre_user_description', 'wp_filter_kses');
add_filter('pre_user_description', 'wp_filter_post_kses');
This removes only the strict HTML filter and replaces it with a less strict version, allowing links, images and markup including divs.
]]>Rating: 5 stars
Does exactly what it needs to do on wordpress 4.0
]]>Rating: 5 stars
great plugin works with current version (3.9)
]]>Rating: 5 stars
No, it hasn’t been updated in 2 years. It didn’t need to be. Nothing about it has changed. It just works.
five stars
]]>Rating: 5 stars
The plugin works well and is done properly.
]]>Rating: 5 stars
Not only does the plugin do exactly what it’s supposed to do (which is, let’s face it, not to hard to do), but is does so in a very clean way. Furthermore, WordPress code standards are followed to some extent and the entire plugin is prefixed (the main functionality is encapsulated in a class, and the enqueued file identifiers are prefixed as well). Great work!
]]>Rating: 5 stars
It works fine.
]]>Rating: 5 stars
In spite of the fact this plugin works like a charm, I don’t get any solution to use it with qTranslate.
]]>