- When we enable the Yoast plugin, the portfolio single post page, the title looks like a blank,

- To fix that, go to /wp-content/themes/shapely/inc/extras.php line number 584 you will see this line,
$title_in_post = get_theme_mod( 'hide_post_title', false );
change that to,
$title_in_post = get_theme_mod( 'hide_post_title', true );
Regards,
$title_in_post = get_theme_mod( 'hide_post_title', false );change that to,
$title_in_post = get_theme_mod( 'hide_post_title', true );Regards,