-
AuthorPosts
-
October 28, 2013 at 11:41 am #181524
Hi,
I am having a website which is running for few years and it has a good seo ranking, Will that ranking be reduced if i replace that theme with Enfold.Please guide me if possible.Thanks :)October 29, 2013 at 12:07 am #181882Hi judetsai!
I don’t think so, perhaps you may want to tweak some heading tags in order to keep the same structure, can you post a link to your actual website?
Best regards,
JosueOctober 29, 2013 at 12:12 pm #181984This reply has been marked as private.October 29, 2013 at 8:38 pm #182224Hi!
I see, effectively you would need to alter the logo in order to wrap it into a h1, and the titles of the pages would need to be changed from h1 to h2, we can help you with that :)
Best regards,
JosueNovember 5, 2013 at 7:08 am #184661Hi Josue,
Sorry for the delay i was off for a vacation.Good to hear that, how should the logo be changed i mean in what way.?I am not so familiar with the seo things, but after some researching i found the ranking will take time to retrieve its previous position once it is lost due to change in the structure(while migrating to a new theme). If possible please can you guide me on specific things i need to change and the exact directions for that.
Thanks :)November 5, 2013 at 7:18 pm #184887Hi!
Sure, please refer to this topics:
For the logo:
https://kriesi.at/support/topic/h1-missing-from-home-page-logo/Regarding the page titles:
https://kriesi.at/support/topic/a-real-seo-problem-blog-post-title-should-be-h1-header/Regards,
JosueNovember 6, 2013 at 5:30 am #185061Hi,
Just for confirmation (as i cannot afford to make a mistake :( )
1) Need to use the following for changing image structure right?
In header.php replace:echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, false, ‘strong’);
with:echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, false, ‘h1’);
2)Need to use the following for changing page title right?
add following code to functions.php:
add_filter(‘avf_title_args’, ‘fix_single_post_title’, 10, 2);
function fix_single_post_title($args,$id)
{
if ( is_single() )
{
$args[‘title’] = get_the_title($id);
}return $args;
}
I have taken the All contents backup with wp export within tools as well as using xcloner plugin that will be enough for backup right?November 6, 2013 at 6:03 am #185066Hi!
Regarding the logo element, yes that would be it.
For the page/single titles, actually you’ll need to edit this file: functions-enfold.php:
Change line 274:
'heading' => 'h1'
To this:
'heading' => 'h2'
Cheers!
Josue -
AuthorPosts
- The topic ‘will i lose Seo ranking if i change my existing theme into Enfold?’ is closed to new replies.