• If you look on my website, https://www.worldsfittest.net, you can see that in the author bio box – at the end of a post – it has a link at the bottom of the box saying “erny peibst” with a link. Does anybody know how to edit this out?

    Thanks for any help you can give.

Viewing 1 replies (of 1 total)
  • After having a quick look at the css of your site, it looks like the ‘About this author’ is split into sections. The section with the link is called autor-footer.

    You could ad this to the style.css of your child theme

    #autor-footer a {
    display: none;
    }

    This will remove the link inquestion, but it will also remove any future links you add to the footer section of the author block.

    If you wanted to hide just that one link (because you intend to add more in the future) I believe the following should work.

    #autor-footer a:first-child {
    display: none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin "author bio box"’ is closed to new replies.