Remove "MORE FROM AUTHOR"

Posted in: Newspaper
Post count: 53

Hello I can remove in the posts the “MORE FROM AUTHOR” makes for me little sense because I’m the only author : https://www.dropbox.com/s/g3vxa7ekv2w9ie2/InkedScreenshot%20%284%29_LI.jpg?dl=0. I just want to have “Related Articles”

Post count: 1341

1. Section MORE FROM AUTHOR you can replace for example to READ ALSO (just to replace field in the Theme panel -> Translation).

2. You can hide this section by entering this code in Theme panel -> Custom CSS

/* Hide More From Author */
.td_block_related_posts .td-related-right {
display:none;
}

3. Either by commenting or removing this line of code from this file
https://www.screencast.com/t/iAwsEsRPXyu

Post count: 53

I have taken the 3 variant, now I can make sure this update? Since after each update the changes are gone, I’m using Child Theme, it has to go that way, right?

Post count: 22421

Unfortunately a child theme is not update proof as well. There is no update proof way of altering the theme files. The css method is the only update proof one as you can place the css code in the theme panel and it will not get removed.

As an alternative you can use jquery the remove the code like so:

jQuery(document).ready(function(){
jQuery(".td-related-right").remove();
});

https://www.screencast.com/t/dnVIbhAKm

Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.