Love it or hate it, the Jetpack plugin offers one of the better options for enabling sharing links on your WordPress site. Unfortunately in Genesis the links are displayed in between the content and post meta. Here’s how to reposition the sharing links.
// Place this in single.php
// Disable auto placement of sharing buttons
if ( function_exists( 'sharing_display' ) )
remove_filter( 'the_content', 'sharing_display', 19 );
add_action( 'genesis_after_post_content', 'child_do_sharing' );
function child_do_sharing() {
if ( function_exists( 'sharing_display' ) ) echo sharing_display();
}
Do note that the code should go into single.php.
For a more advanced method, check out Ryan Meier’s tutorial:
Moving Jetpack Sharedaddy links outside the content with Genesis
Update: Just realized that the Jetpack team have a blog post about this too – Moving Sharing Icons