Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know what causes conflicts between plugins in Wordpress. I'm not interested in one specific plugin, but would like to know generally what causes them.

All I can find online is advice like "deactivate your plugins one-by-one until you find the one that is conflicting". Or info on specific plugins.

Is it because there are the same variable or function names in 2 different plugins? Is it something to do with javascript? I'm not a programmer, but sort of a power user. If I knew what I needed to look for, I could probably find and fix.

Thanks!

share|improve this question
1  
You need to debug the heck out of it... Starting point: an error message either in the browser screen or console, or in your PHP log file. The numbers of reasons may be the number of plugins in the world to the nth level. Surely, outdated or badly coded plugins and themes are number 1 reason. – brasofilo Dec 14 '12 at 4:03
It's thesis theme, so I don't think that's the problem. But I will check your links. Thanks! – Gregory Sheppard Dec 14 '12 at 5:08

closed as off topic by Jack, Matteo, Jean-François Corbett, Shree, evilone Dec 14 '12 at 9:51

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

There's a bunch of reasons for plugin conflicts.

Plugins might use the same names -- for functions or classes in PHP, WordPress options, custom post types, form fields, shortcodes, slugs... you get the picture. This is why it's important to try to come up with unique names.

They might load different versions of the same JavaScript scripts, or do evil things like replace the versions delivered with WordPress, causing script incompatibilities. Some plugins load scripts directly, not using the wp_enqueue_script() function, and clobber other plugins that way.

They might alter the post query loops using filter hooks, in ways that stop other plugins working.

They might compete for filter and action hooks, preventing one another from getting to some data before it changes.

They might even just add some CSS that is too general (i.e. not using targetted selectors) that messes up other plugins' CSS.

Do you have a specific problem?

share|improve this answer
Ok, that's probably more than I can deal with. I have a new facebook plugin and one called "SEO SearchTerms Tagging 2". One thing the SEO plugin does is promote older posts. It re-posts one post per day with that day's date. When I activate the FB plugin & click on any reposted posts (title or read more) it shows only the red bg color and not the post. If you click on a non-reposted post, everything is ok. I unchecked "promote older posts" and even deactivated the plugin, but no difference. Pretty sure it's that plugin that is causing the conflict, since the prob is only on reposts. – Gregory Sheppard Dec 14 '12 at 5:06
Per brasofilo, start off by debugging the heck out of it :) by turning on WP_DEBUG and WP_DEBUG_LOG. If it's an error, it ought to show up in the log. Otherwise, you're best off asking for help from the plugin authors (but going prepared with any debug messages will help you get their assistance). – webaware Dec 14 '12 at 5:32
Sorry, I didn't get how this works! Webaware asked if I had a specific problem, so I wrote it out. But still appreciate the original answer to my question. – Gregory Sheppard Dec 15 '12 at 19:36
The mods can get a bit thingy about that sort of thing, but that doesn't stop us answering :) (and you might want to check out WordPress Answers as well) – webaware Dec 15 '12 at 22:17

Not the answer you're looking for? Browse other questions tagged or ask your own question.