// Override the blog grid date to display the post entry meta instead.
add_filter( 'vcex_blog_grid_date', function( $date, $shortcode_attributes ) {
ob_start();
if ( function_exists( 'wpex_get_template_part' ) ) {
wpex_get_template_part( 'blog_single_meta' );
}
return ob_get_clean();
}, 10, 2 );
Snippets: Override the Blog Grid Element Date with the Full Meta (date, author, comments, etc)
All PHP snippets should be added via a child theme's functions.php file or via the Code Snippets Plugin (or alternative plugin)