I love this plugin. However, I am having one small issue with it. When I enter an apostrophe, it gives a backslash along with it. So, instead of boy's it says boy\'s. Any ideas on why this is happening?
I love this plugin. However, I am having one small issue with it. When I enter an apostrophe, it gives a backslash along with it. So, instead of boy's it says boy\'s. Any ideas on why this is happening?
Hey, if you're still wondering (and this issue was driving me nuts), here is the solution.
go in and edit the plugin -> search for a function named
function get_wrapped_block_content( $data ) {
$block = wp_kses_stripslashes($data['html_prepend']).wp_kses_stripslashes($data['content']).wp_kses_stripslashes($data['html_append']);
return do_shortcode($block);
}
and add this line before the return statement:
$block = stripslashes($data['html_prepend']).stripslashes($data['content']).stripslashes($data['html_append']);This topic has been closed to new replies.