Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #420741

    Hi,

    I have one problem for seo Question ! I want to remove the link on the h1 permalink on post, meta and page ? How can i do this ?

    Thanks

    #421004

    Hey John!

    I’m not sure I understand your problem, do you want to remove or not show the H1 altogether or just the link and keep the actual text?

    Cheers!
    Rikard

    #421310

    Hi Rikard,

    We just want to keep the H1 and remove the link !
    Thanks in advance

    #421367

    I’m pretty sure that you will need to create a child theme and override the avia_title function.

    
    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title(array('heading'=>'strong', 'title' => $title, 'link' => $t_link, 'subtitle' => $t_sub));
    

    I can almost guarantee you though that it won’t have any effect on your SEO. There are hundreds of millions of WordPress blogs out there with permalinks in the H1 tag and Google et al would be pretty silly if they started counting this as a negative ranking factor.

    #421767

    Hi!

    I would have to agree with @AdrianSmithUK, this will most likely not make any difference to your SEO results at all. Do you still want to remove the links though?

    Best regards,
    Rikard

    #424587

    Thanks for your answer ! The Chil theme is already created ! I pu this function in function.php ?

    #425041

    Hi!

    Add this to the Quick CSS field to disable the link:

    h1.post-title.entry-title a {
      pointer-events: none;
    }

    Best regards,
    Ismael

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.