I use both The Events Calendar Pro and the Alex King Popularity Contest on a site. The popularity contest was adding it’s tracking to the end of all the tooltip popup descriptions in the calendar view. I ended up fixing by “unhooking” the function from the_content by adding:
remove_action(‘the_content’, ‘akpc_content_pop’);
to the table.php file right before the call to the content:
echo has_excerpt() ? TribeEvents::truncate($post->post_excerpt) : TribeEvents::truncate(get_the_content(), 30);
I really have a limited understanding of PHP so is this OK? Is there a better way to do it?