• Hi

    How can I remove the “you may also like” text and hand icon at the bottom of the posts. I want to remove this from a selection of posts. I want to do this through my css file. I have managed to remove the related posts and images with the code:

    .related-posts { display: none; }

    But the “You may also like” text is still there. Can anyone help with this?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can you post a link? Or use a developer tool to determine the class associated with that text…

    Why cant you just disable this through your themes options panel?

    If you want to do it through css this should work, if using a custom css plugin add this,

    .heading,
    #reply-title {
    display: none;
    }

    If your editing a child theme css just look for the section that says “base headings” and edit from there.

    `

    Thread Starter Steven_Bradburn

    (@steven_bradburn)

    The reason why I want to do this through the CSS file is because I am using the DW question and answer plug-in which essentially creates posts for every question. However I do not want to display the related post area on these, but I do want to display the related posts on the posts I write.

    Here is an example of one of the pages I want it removed from.

    @beefstick I tried that coding and it did not seem to work 🙁

    Thread Starter Steven_Bradburn

    (@steven_bradburn)

    Sorry I input the code the wrong way. It is working now! Thanks for all your help

    Makes sense. No problem glad to help. Great site.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Remove "You may also like" text’ is closed to new replies.