Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #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 :)

    #181882

    Hi 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,
    Josue

    #181984
    This reply has been marked as private.
    #182224

    Hi!

    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,
    Josue

    #184661

    Hi 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 :)

    #184887
    #185061

    Hi,
    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?

    #185066

    Hi!

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘will i lose Seo ranking if i change my existing theme into Enfold?’ is closed to new replies.