Alter the Default Grid Entry Title Heading (h2) Tag
function myprefix_vcex_grid_default_title_tag( $title_tag, $atts ) { // You can just return your preferred tag $title_tag = 'h3'; // Or you can check the post type using the atts var if ( isset( $atts['post_type'] ) && 'portfolio' == $atts['post_type'] ) {…