To move the buttons, you have a few options. The FAQ shows examples of the filters available for changing the locations. You’d likely want to follow along the lines of the first one (moving the before location to genesis_before_entry
–I know you don’t want it there, but doing something similar with the after location, depending on where the related posts have been hooked in).
Another option would be to select the manual placement option for posts and handle the output completely with code. I use something like this on my own site:
add_action( 'genesis_after_content', 'leaven_add_buttons_downloads', 20 );
function leaven_add_buttons_downloads() {
if ( ! function_exists( 'scriptlesssocialsharing_do_buttons' ) ) {
return;
}
echo wp_kses_post( scriptlesssocialsharing_do_buttons() );
}
So if your related posts are added similarly, then you could try this. Note: modifying the output with a filter or code as above will mean you’re editing important site files–please make sure you have backups, practice safe coding, etc.
As for the style of the heading above the buttons, the plugin doesn’t actually style that at all–it’s just using whatever your theme rule is for h3
elements. You can target it more specifically by creating a new rule for .scriptlesssocialsharing h3
.
Hope that helps you get started!