Hi Guys,
Thanks for the update! I decided to give the mobile version a try, but was wondering how to disable the Sharing buttons from the mobile theme. I want to echo the sharing display on to the top of the post instead of the bottom.
What additional filter will I need to add to this in my functions? Perhaps there can be an option to choose the top of the post or bottom in future updates?
function jptweak_remove_share() {
remove_filter( 'the_content', 'sharing_display',19 );
remove_filter( 'the_excerpt', 'sharing_display',19 );
}
add_action( 'loop_end', 'jptweak_remove_share' );
Many Thanks In Advance!