Quote:
Any thoughts on how to move the homepage (in my case #post-98) to the bottom underneath the ‘panes’.
Try adding this to your child theme’s functions.php file (if it is empty, put the code between <?php and ?> )
function graphene_move_homepage_panes(){
remove_action( 'graphene_bottom_content', 'graphene_display_homepage_panes' );
add_action( 'graphene_top_content', 'graphene_display_homepage_panes' );
}
add_action( 'template_redirect', 'graphene_move_homepage_panes' );
Quote:
Also I want to remove the “Home” title but only for the homepage. Is that possible?
Add this to custom CSS or child theme style sheet.
#post-98 .post-title, .post-title a {
display: none;
}