plugin causing conflict with other plugins
-
Just received a support ticket from a user of my plugin (wpDirAuth) that your plugin was causing a conflict. Looked into your code and can see what the problem is.
In line 97, in the function cdh_admin_load in the file custom-dashboard-help.php, you’re including the file ‘pluggable.php.’ Unfortunately, this blocks all other plugins that load after yours from overriding the functions in that file. If you change line 42 from
cdh_admin_load()
to
add_action('plugins_loaded','cdh_admin_load');
and then remove lines 96-98, your plugin will continue to function as expected, and will allow other plugins to override the pluggable functions.
The topic ‘plugin causing conflict with other plugins’ is closed to new replies.