Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ac1643

    (@ac1643)

    Hi, is there any possibility of support for this issue?

    I would be happy to donate to this plugin if I could get support when needed.

    thanks

    Thread Starter ac1643

    (@ac1643)

    Hi, solved the issue in case anyone else if having the same problem.

    If getting [raw] tags, do the following (I had them appear above and below the 4-column grid layout widget):

    In this file: blog-manager-light/classes/otw_dispatcher.php swap this:

    // Hack to solve some idiotic themes that use remove_filters for wpautop
    if( !has_filter( ‘the_content’, ‘wpautop’ ) && !$ajax && !$bm_options[‘widget’]) {
    return ‘[raw]’ . $outputHtml . ‘[/raw]’;

    with

    // Hack to solve some idiotic themes that use remove_filters for wpautop
    if( !has_filter( ‘the_content’, ‘wpautop’ ) && !$ajax && !$bm_options[‘widget’]) {
    return $outputHtml;

    You many want to use a child theme, these changes may be overwritten on updating the plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[raw] tags appearing in blog’ is closed to new replies.