-
AuthorPosts
-
January 10, 2014 at 8:53 pm #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?
January 10, 2014 at 9:25 pm #208175Hey 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!
DevinJanuary 11, 2014 at 1:06 am #208278Hello
I see
now I that I created the child theme directory, how do I move the settings of the parent theme easily to it?January 11, 2014 at 2:56 am #208287Hey!
Go to Enfold > Theme Options > click the “Import Parent Theme Settings” button.
Best regards,
IsmaelJanuary 21, 2014 at 12:57 am #212489Hello
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
January 21, 2014 at 1:31 am #212499Hey!
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 -
AuthorPosts
- The topic ‘SEO Issue – Multiple H1 Tags in posts’ is closed to new replies.