Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #208158

    Dear Support

    It seems there are multiple H1 tags in posts, which creates some serious SEO issues,
    I found in functions-enfold.php where all the default settings are set for titles:

    $defaults = array(

    ‘title’ => get_the_title($id),
    ‘subtitle’ => “”, //avia_post_meta($id, ‘subtitle’),
    ‘link’ => get_permalink($id),
    ‘html’ => “<div class='{class} title_container’><div class=’container’><{heading} class=’main-title entry-title’>{title}</{heading}>{additions}</div></div>”,
    ‘class’ => ‘stretch_full container_wrap alternate_color ‘.avia_is_dark_bg(‘alternate_color’, true),
    ‘breadcrumb’ => true,
    ‘additions’ => “”,
    ‘heading’ => ‘h1’ //headings are set based on this article: http://yoast.com/blog-headings-structure/
    );

    and added this line underneath the above array:

    if ( is_single() ){ $defaults[‘heading’] = ‘h2’; }

    is it possible to fix the issue in your releases so the updates do not overwrite our manual fix?

    #208175

    Hey cirrus05!

    The idea that you can only have one h1 element on a page is incorrect. It is perfectly valid and SEO friendly to have multiple h1 elements per page.

    You can replace the structure in a child theme so that updates never writes over your own SEO customization.

    Cheers!
    Devin

    #208278

    Hello
    I see
    now I that I created the child theme directory, how do I move the settings of the parent theme easily to it?

    #208287

    Hey!

    Go to Enfold > Theme Options > click the “Import Parent Theme Settings” button.

    Best regards,
    Ismael

    #212489

    Hello

    I did but it seems no matter what the color style or menu settings I choose, it does not have any impact and the pages look messed up

    #212499

    Hey!

    Can you please give us a link to the website? Do you have a cache plugin? Please flush the settings after you change the styling. Deactivate all existing plugins, see if the issue persist. If you have an access to the cpanel, please go to wp-content/uploads/dynamic_avia folder then change the file permission of enfold.css to 755.

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘SEO Issue – Multiple H1 Tags in posts’ is closed to new replies.