How to display meta information in another place

Add this code to functions.php (use custom child theme or plugin FunctionsPHP):

function peach_theme_setup() {

       // remove meta block after title
	remove_action( 'basic_after_post_title', 'basic_get_postmeta', 10 );

        // display after thumbnail
	add_action( 'basic_after_post_thumbnail', 'basic_get_postmeta' );

       // or display after button Read more
	add_action( 'basic_before_more_link', 'basic_get_postmeta' );

}