How to Remove “MORE FROM AUTHOR”, because its have the same result of Related Article.
like this: http://prntscr.com/ds0irh
Thanks,
Hello roqeem,
In order to remove more from author you can use 2 methods:
The css method:
.td_block_related_posts .td-related-right {
display:none;
}
or you can edit the theme files: comment out or delete this part: http://screencast.com/t/Okmq7lxTDzGd
For your second request, if you want to change the background-color for the Related Articles tab you should use the code below and place it in Theme panel->Custom CSS area.
.td-related-title .td-cur-simple-item {
background-color: red;
}
The result you should see here -> http://screencast.com/t/mKqMSHeV
Thank you!
Catalin where to i find that css method ? I have no idea where to find that
.td_block_related_posts .td-related-right {
display:none;
}
in order to delete “more from author box”
btw i’m using newspaper theme not newsmag, but i see this thread about the same question – so that is reason why i posted here
Hello
If you want to remove the More from author tab for each post, you should use the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td_block_related_posts .td-related-right {
display:none!important;
}
The result is here -> https://www.screencast.com/t/dYFZ2m2NP4
Thanks for the message!
Hello Caz,
Try the code below ->
.td_block_related_posts .td-related-left {
display:none!important;
}
.td-related-title .td-related-right {
border-radius: 10px!important;
}
The result is here -> https://www.screencast.com/t/xbokeOGt
Thanks.
Thank you Catalin.
I tired the code above and it does hide the related post tab but still loads the related posts, until you click the more from author tab. Is there anyway to load the more from author posts without click the more from author tab?
The same as switching the the more from author tab to default (to the left) and related posts (to the right). Therefore it would load the more from author posts first and then on clicking related posts, it would filter it. If that makes sense.
Hello,
If you want to reverse the palces of the more from author and related articles, please replace your td_block_related_posts.phph file code with this one:
https://pastebin.com/tDUSjXZ6 The file can be found here: https://www.screencast.com/t/X3mmagFmqMV
I hope this helps
Thanks.
Hi meeshymee,
This is a very old topic, now in Newsmag v4.9.4 the theme has those options integrate -> https://i.imgur.com/Uap9iSV.png -> https://i.imgur.com/rxy9w36.png also our theme has a dedeicate section for custom code ->https://i.imgur.com/Dx4xXuK.png
Let me know the results!
Thank you!