Support › Forums › Flex Theme › genesis simple share › Reply To: genesis simple share
June 13, 2015 at 3:25 pm
#289
Moderator
Hi
Here is the code. You will add it above the genesis() function in front-page.php file
global $Genesis_Simple_Share;
add_filter( 'genesis_pre_get_option_general_show_archive', '__return_true' );
remove_action( 'genesis_loop', array( $Genesis_Simple_Share, 'start_icon_actions' ), 5 );
add_action('genesis_after_content', 'flex_simple_share_on_home');
function flex_simple_share_on_home() {
global $Genesis_Simple_Share;
genesis_share_icon_output( 'after' , $Genesis_Simple_Share->icons );
}
Thanks
Chinmoy