Conflict with WP Content Experiments & Event Tracking
-
After installing WP Content Experiments & Event Tracking I was getting an error that Autochimp could not locate some files due to an error on line 103 in autochimp.php. This was because Autochimp is routing anything with the words Sync, Publish or Content back through the plugin, and WP Content Experiments & Event Tracking plug in fell into this search.
I added the following code in line 95 to exclude my specific conflicting terms.
{
if ($class == “Content_Experiments_WP_Admin” || $class == “Content_Experiments_WP”){
return;
}
- The topic ‘Conflict with WP Content Experiments & Event Tracking’ is closed to new replies.