How to change title of Related posts section

  • Unknown's avatar

    After every post, there is a Related posts section. Is there a code to change the title from ‘Related’ to “More like this’?

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    Here is a snippet you can use to change the title text:

    #jp-relatedposts h3.jp-relatedposts-headline em:before {
        content: "More Like This";
    }

    Let me know if that works for you.

    Thanks!

  • Unknown's avatar

    Hello!

    Thanks for sharing this code. Unfortunately, it does now work as intended. It adds “More like this” plus an extra line.

    It does not remove the Related headline.

    See here: https://bit.ly/3fSlsCc

  • That’s because that code only adds text. It doesn’t hide the existing text. Try this instead:

    /*
    Replace title of related posts section
    */
    #jp-relatedposts h3.jp-relatedposts-headline {
    	font-size: 0px;
    	visibility: hidden;
    	line-height: 0;
    }
    #jp-relatedposts h3.jp-relatedposts-headline em:before {
    	content: "More Like This";
    	visibility: visible;
    	padding-top: 20px;
    }
  • The topic ‘How to change title of Related posts section’ is closed to new replies.