Jetpack sharing buttons remove_filter don't working anymore
-
Hi,
I had the following code in my functions.php to hide the Jetpack Sharing Buttons in the_content and the_excerpt:
function remove_jetpack_sharing() { if ( is_singular() && function_exists( 'sharing_display' ) ) { remove_filter( 'the_content', 'sharing_display', 19 ); remove_filter( 'the_excerpt', 'sharing_display', 19 ); } } add_action( 'loop_start', 'remove_jetpack_sharing' );
This code worked until I update the Jetpack to their lastest version today.
I’ve also tried the codes suggested here: https://jetpack.com/2013/06/10/moving-sharing-icons/ – but without success.What more can I try to remove the sharing_display filters?
Thanks!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Jetpack sharing buttons remove_filter don't working anymore’ is closed to new replies.