Title: Plugin-theme  Conflict
Last modified: August 30, 2016

---

# Plugin-theme Conflict

 *  Resolved [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/)
 * I started a thread yesterday and forgot my pass ( I am not sure if its correct
   to start another thread or to continue in the previous) I have a plugin conflict
   with customizr. I have only active 2 plugins buddypress and buddypress global
   search, when I deactivate buddypress, customizr and bgs work perfect but when
   buddypress is active it doesn’t work, I did try this 2 plugin combination with
   other themes and they are working fine.
 * What happens with customizer is that when I try to do a search and buddypress
   is active, instead of getting the search results I get a blank box with a .
    
   I am not sure if this is the right place to report plugin conflicts, or if I 
   also need to notify to bps and buddypress support forums.
 * Thanks

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

 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423648)
 * I found another incompatibility since the update with buddypress, (This is the
   only active plugin I have).
 * When trying to change the profile photo, I can upload the picture, but it doesn’t
   displays anything, the only thing that appears is a dot ( the same happens with
   the search results, I mention above.)
 * I try to recreate the same issue, with the default wordpress themes, and this
   only happen with customizr, I only have active buddypress, and before the update
   it was working fine, I don’t know if anyone else is having a similar situation.
 * Please help.
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423651)
 * Where you upload the picture?
    In the dashboard -> Profile -> Your Profile ->
   Extended Profile? Works fine here, cannot reproduce this…
 * Also in the frontend…
    works fine
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423661)
 * Here’s a compatibility code to correctly show that plugin search results.
    Add
   the following code to your child-theme functions.php:
 *     ```
       add_action('template_redirect', 'bp_gs_compat', 100);
       function bp_gs_compat(){
   
         if ( ! ( method_exists('TC_plugins_compat', 'tc_is_plugin_active') && current_theme_supports( 'buddy-press' ) && TC_plugins_compat::$instance -> tc_is_plugin_active('buddypress/bp-loader.php') && TC_plugins_compat::$instance -> tc_is_plugin_active('buddypress-global-search/buddypress-global-search.php') ) )
           return;    
   
         if ( ! ( is_search() && ! is_admin() ) )
           return;
   
         global $wp_query;
         $wp_query-> is_singular = true;
         $wp_query-> is_page = true;
   
         add_filter('tc_set_grid_hooks', '__return_false');
         add_filter('tc_post_list_controller', '__return_false');
         add_filter('tc_show_post_metas' , '__return_false' );
         if ( method_exists('TC_headings', 'tc_render_headings_view') )
           remove_action ( '__before_loop' , array( TC_headings::$instance , 'tc_render_headings_view' ) );
   
         remove_all_filters('tc_the_title');
       }
       ```
   
 * (tested here with customizr 3.4.6, BuddyPress 2.3.2.1, BuddyPress Global Search
   1.1.0)
 * Hope this helps.
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423662)
 * Frontend->profile -> change profile picture, then upload.
 * The picture uploads but, I cannot see the image, (in the upload window to crop)
   only a dot. If I click upload, the picture does upload, but since I was not able
   to crop it, it looks weird.
 * I try to recreate the same in other computer, and I get the same result.
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423664)
 * Hi, Thanks for taking the time with that snippet, I just add it, and it works
   in somethings for example, before I didn’t get to see the suggestions, and now
   with the snippet am able to see them, but still when I hit search I get the dot
   and nothing else.
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423665)
 * Link to your site?
    Works fine here (both, also the picture upload), where did
   you place it? Do you have buddypress enabled right?
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423696)
 * Or at least a screenshot of what you see as search results with that snippet 
   applied?
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423697)
 * Sure,It is in a test environment, I try it now in 3 different computers all are
   each in a localhost, it works in one of the computers and it does not work in
   the other 2, I actually eliminate all of the plugins in one computer except buddypress,
   but still can’t get it to work.
    Buddypress its correctly enabled in all 3, I
   did try uninstalling and reinstalling customizr with no success, I even copy 
   the customizr folder from the computer that is working but, it didn’t work either.
 * I saw in another thread that some users have success enabling and disabling the
   retina support, I also tried that.
 * I think it is maybe related to the preview, since the picture does upload, but
   I am not able to crop it, and now that I think about it, maybe its not an actual
   dot but a very small square.
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423702)
 * I see,
    so in one of them it works.. Maybe you have different settings for Customizr?
   I’m really unable to reproduce it.
 * Anyway I was asking for a screenshot of the search results page with the plugin
   + the snippet applied.
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423714)
 * Sorry I took so long to answer, I was testing everything in all 3 computers, 
   so the snippet in one computer worked perfect, and in the other wasn’t, finally
   I discover it wasn’t working because the option “anyone can register in buddypress”
   was not checked. Once I checked this option and that the snippet was active the
   buddypress global search problem was “solved”. So I activate plugins again, it
   stopped working, then deactivated everything and still doesn’t work, (I dont 
   know how to add a screenshot in this thread 🙁 I tried to paste it but it didn’t
   work.)
    Oh and in the computer in which the snippet did work- for the search 
   results, still doesn’t preview the profile picture upload, same as the other 
   computer. And what I find weird, is that when I tried the default wordpress themes
   it actually works in all the computers, so I guess it must be something in my
   settings in customizr.
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423719)
 * Ok, I had been testing and testing, and yes indeed the snippet works also in 
   my other computer for the search results (it only displays the dot when it doesn’t
   finds a post (even when it does exist).
 * So the search issue is solved.
 * But the profile picture preview issue remains, I will continue testing.
 *  Thread Starter [arlblue](https://wordpress.org/support/users/arlblue/)
 * (@arlblue)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423720)
 * Finally! My profile picture preview is back. It was my customizr settings, I 
   unchecked and saved my settings, then checked again and saved.
 * Thanks for taking the time to help me 🙂
 *  [mupamupa](https://wordpress.org/support/users/mupamupa/)
 * (@mupamupa)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423736)
 * hi d4z_c0nf
    i do experience another conflict with a WP-UI accordion after the
   upgrade ot Customizr theme. I can see you have given a solution for another plugin
   here.[http://presscustomizr.com/support-forums/topic/jquery-tooltips-suppressed/](http://presscustomizr.com/support-forums/topic/jquery-tooltips-suppressed/)
   with WP UI the accordion is suppressed – only the content in the container is
   displayed wuthout the titles. Can you please provide snipet for WP UI as well?
   Thanks a lot.
 *  [Rocco Aliberti](https://wordpress.org/support/users/d4z_c0nf/)
 * (@d4z_c0nf)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423737)
 * Hello mupamupa,
    can you please open a new topic and provide a link to your site(
   if you can) and a link to the wp-ui accordion plugin? Also specify if the issue
   occurred after a customizr upgrade and it worked fine with previous theme’s version
   or not. I’ll do my best Thanks 😉
 *  [mupamupa](https://wordpress.org/support/users/mupamupa/)
 * (@mupamupa)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423738)
 * hello d4z_c0nf,
    thank you for writing. I started the new topic here:
 * [https://wordpress.org/support/topic/wp-ui-accordion-not-working-after-customizr-upgrade?replies=1#post-7294135](https://wordpress.org/support/topic/wp-ui-accordion-not-working-after-customizr-upgrade?replies=1#post-7294135)
 * I hope you would come back to it.
    Thanks

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

The topic ‘Plugin-theme Conflict’ is closed to new replies.

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

 * 15 replies
 * 3 participants
 * Last reply from: [mupamupa](https://wordpress.org/support/users/mupamupa/)
 * Last activity: [10 years, 7 months ago](https://wordpress.org/support/topic/plugin-theme-conflict/#post-6423738)
 * Status: resolved