I originally posted this problem here
Afterwards, by disabling different plug-ins I found that it was Event Calendar was stopping the WordPress filters from working
I originally posted this problem here
Afterwards, by disabling different plug-ins I found that it was Event Calendar was stopping the WordPress filters from working
SOLUTION:
Event Calendar Version 3.1.4 implements its own excerpt filters..
To remove them add the following to your theme's functions.php file
remove_filter('the_content','ec3_filter_the_content',20);
remove_filter('get_the_excerpt', 'ec3_get_the_excerpt');
add_filter('get_the_excerpt', 'wp_trim_excerpt');This topic has been closed to new replies.