When using the Hello Theme for your Elementor project in combination with the Rank Math SEO plugin, you may encounter an issue with duplicate meta tags.
<meta name="description" content="Our passionate team specializes in the design and development of high-performing custom websites."/>
<meta name="description" content="Our passionate team specializes in the design and development of high-performing custom websites."/>
To avoid this SEO-unfriendly duplicity, simply copy and paste this code fix into your functions.php file:
function remove_hello_elementor_description_meta_tag() {
remove_action( 'wp_head', 'hello_elementor_add_description_meta_tag' );
}
add_action( 'after_setup_theme', 'remove_hello_elementor_description_meta_tag' );