This tutorial shows you how to move the post info in the entry header above the entry title like this :
Go to foodie-pro > lib > widgets > featured-posts > views > display.php around line 75 and reposition the code for the post info so it executes before the entry title like you see in the following code :
Based on the following question from the Genesis community :
I am trying to move the post info above the post title which worked using the following actions:
remove_action( 'genesis_entry_header', 'genesis_post_info', 12); add_action( 'genesis_entry_header', 'genesis_post_info', 9 );
But… nothing changes onto the homepage where the post info still shows below the title. I assume this is something to do with the foodie pro featured widget but I have no idea how to modify that. Any ideas how can I have post info showing up above the title even on homepage?