Pri používaní témy Hello Theme pre projekt Elementor v kombinácii so zásuvným modulom Rank Math SEO môžete naraziť na problém s duplicitnými meta značkami.
<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."/>
Ak sa chcete vyhnúť tejto SEO nepriateľskej duplicite, jednoducho skopírujte a vložte túto opravu kódu do súboru functions.php:
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' );