By Shane Seguin on Saturday, 11 August 2018
Posted in Technical Issues
Replies 3
Likes 0
Views 458
Votes 0
Hello, is there a way to remove the link from the Author name that appears below the Post Title?

I want to display the Post author name, but not have it link to anything else.
Any way to do this?

Thank you.
Hey there,

I am really sorry for the delay of this reply as it is a weekend for us here.

Unfortunately currently that is not possible to disable that hyperlink for the author.

But you can try apply this following custom css from your site backend > Easyblog > theme > custom css and see how it goes.


body #eb .eb-meta-author,
body #eb .eb-post-author a {
pointer-events: none;
}


Remember clear your browser and your site backend cache before you test because it might load the old CSS on the browser if doesn't clear the cache.
·
Saturday, 11 August 2018 09:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi that worked perfectly. Thank you.

Second question which is similar:
Any way to hide or remove the Category name from appearing under the title of Related Posts?

You can see an example here at the bottom of the page:
https://www.radioheteroglossia.com/en/interviews/2017-08-maria-ospina-and-david-ospina-universidad-de-manizales-and-catolica-de-manizales-colombia-peacebuilding-and-the-creative-potential-of-children-in-colombia-transl

Thank you.
·
Saturday, 11 August 2018 18:55
·
0 Likes
·
0 Votes
·
0 Comments
·
You're most welcome.

You can apply this following custom css into same location.


body #eb.eb-view-entry .eb-entry-related .eb-related-category {
display: none;
}
·
Sunday, 12 August 2018 00:08
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post