• Resolved rjg48116

    (@rjg48116)


    I have a conflict with Timely All-in-one events calendar plugin. When event titles are long they show a <wbr> in both the widget and the calendar. Is there a way to edit the theme to accept these longer titles? See it here groat.info/GCMI The plugin works with other themes just fine.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author nobita

    (@nobita)

    Hi rjg48116

    remove wbr element.

    functions.php line:5222

    /**
     * Entry title none breaking text breakable
     *
     *
     * test filter.
     * @since 1.119
     */
    add_filter( 'the_title', 'raindrops_non_breaking_title' );

    change below

    /**
     * Entry title none breaking text breakable
     *
     *
     * test filter.
     * @since 1.119
     */
    //add_filter( 'the_title', 'raindrops_non_breaking_title' );

    Another way.

    Add to functions.php first line <?php before.

    <?php
    function raindrops_non_breaking_title( $title ){
        return $title;
    }
    ?>
    Thread Starter rjg48116

    (@rjg48116)

    Worked perfectly. Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Plugin conflict’ is closed to new replies.