Hello Kim,
Thanks for writing in! To resolve your issue, since you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.
// Rename Essential grid title
// =============================================================================
function rename_ess_title($args){
$args['postArgs']['label'] = 'Essential Grid Posts';
return $args;
}
add_filter( 'essgrid_register_custom_post_type', 'rename_ess_title', 100);
// =============================================================================
We would loved to know if this has work for you. Thank you.