Is it possible to remove the Inline Sharing buttons (the ones after the title at least) from all the 'page' post-types? I wish to continue using those on other post-types. Or do I have to edit the drop-in files?
I assume you want to keep the floating icons enabled on Pages though, right?
I've been meaning to add separate display controls to the share options so you can choose where each type (inline vs. floating) shows more precisely instead of grouping them together with the current setup:
For now you can make an easy edit to the Share drop-in file to prevent inline icons from showing on pages. Open
/wp-content/md-dropins/share/share.php
and find line 462:
if ( ! empty( $inline ) && is_singular() && (
and change it to:
if ( ! empty( $inline ) && is_singular() && ! is_page && (
This will always remove inline share buttons on Pages. The next update to the Share drop-in will include this behavior natively so you won't have to edit the file again. I hope this works for you!
I'm moving this to Feature requests so we can keep track of its progress.