Skip Navigation

[Resolved] “Related” showing on front end

This thread is resolved. Here is a description of the problem and solution.

Problem:

The issue here is that the user was getting the text "Related" on their posts but wasn't sure where it was coming from.

Solution:

It turns out that this was a default text in the theme. I recommended the use of CSS to hide this text.

.jp-relatedposts{
 display:none; 
}
This support ticket is created 5 years, 8 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 9:00 – 12:00 -
- 13:00 – 18:00 13:00 – 18:00 13:00 – 18:00 14:00 – 18:00 13:00 – 18:00 -

Supporter timezone: America/Jamaica (GMT-05:00)

This topic contains 2 replies, has 2 voices.

Last updated by johnC-6 5 years, 8 months ago.

Assisted by: Shane.

Author
Posts
#1234625
Screen Shot 2019-04-23 at 2.09.03 PM.png

I am trying to: Create a relationship with countries and books, with related books showing on the relevant country page. The relationship works, however, I am seeing "Related" on the page. I am not sure why this is showing as I cannot find anything in the code that would make this happen.

hidden link

#1234686

Shane
Supporter

Languages: English (English )

Timezone: America/Jamaica (GMT-05:00)

Hi John,

Actually this text is generated by your theme itself.

It order to remove it completely on your custom posts I would recommend getting in touch with your theme's support team.

However i've added some css to your view that can hide this text for you.


.jp-relatedposts{
 display:none; 
}

Thanks,
Shane

#1234742

My issue is resolved now. Thank you!