Title: Plugin conflict
Last modified: August 21, 2016

---

# Plugin conflict

 *  Resolved [rjg48116](https://wordpress.org/support/users/rjg48116/)
 * (@rjg48116)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-conflict-29/)
 * 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](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-conflict-29/#post-4283335)
 * 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](https://wordpress.org/support/users/rjg48116/)
 * (@rjg48116)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-conflict-29/#post-4283353)
 * Worked perfectly. Thank you!

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

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

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [rjg48116](https://wordpress.org/support/users/rjg48116/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/plugin-conflict-29/#post-4283353)
 * Status: resolved