The post meta sections are the
// For the blog posts use 'wpex_blog_single_meta_sections' instead
function my_wpex_meta_sections( $parts ) {
// Your meta sections array ( you can move them around or remove some )
// This is the default array you could also just use unset to remove anything you don't want
$parts = array( 'date', 'author', 'categories', 'comments' );
// Return sections
return $parts;
}
add_filter( 'wpex_blog_entry_meta_sections', 'my_wpex_meta_sections' );