Hide author in blocks

Posted in: Newsmag
Post count: 3

Hello, first comment here.
My site has only 2 authors and it looks weird on home screen seeing the same names some many times.
How can I stop authors from showing in blocks (homescreen, blog, archives, etc.)?
Thanks.

Post count: 6535

Hi

You can hide the author name from theme panel > post settings: http://screencast.com/t/kkKTM0OlDpX but in that case the author name will be hided and from post content: http://screencast.com/t/n5AbWr0mG5H
If you want to hide it only from page content try this custom css in theme panel > custom css:

.page .td-post-author-name{
display: none
}

Let me know how ti goes and provide more details if you still need assistance on this.

Thanks!

Post count: 11

hi me too, how do you hide author in blocks only ? not page

do you have a command for this?

Post count: 11

also the date too from the block on front page?

Post count: 6535

Hi

By default the theme doesn’t have on option for that but you can use custom css to hide the author name and date from blocks only for the homepage:

.home .td_block_wrap .td-post-date {
display: none;
}
.td_block_wrap .td-post-author-name {
display: none;
}

Let me know how it goes and provide more details if this is not what you mean.

Thanks!

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