Hi,
You can disable the author name and comment count displayed on modules/blocks here
– https://www.screencast.com/t/PCzTSP10V97
Thanks
Hi,
In that case you could do it like this, using some css. First enter a code that will hide all the post author names on all the blocks in the homepage, the enable it on just that particular block
– https://www.screencast.com/t/2aJLRizELCfh
In your case should be like this, the code will apply only for the homepage, if you want it to apply everywhere just remove the home class from the code. You must enter it in Theme panel->Custom Css section.
.home .td-post-author-name {
display: none;
}
.home .td_block_21 .td-post-author-name {
display: inline-block;
}
Thanks
Simion, hello!
How can I remove Author Link (link to page site/author/name), but leave author name in posts?
Hi,
@Dmitry_Lupich If you mean the author name on the blocks and modules, you can disable it in the theme panel like shown in the screenshot, and it will not be displayed. The author name will appear normally on posts.
If you wanted something else please provide more details about this, and I will try to give you a solution.
Thanks
More details: for better SEO I need to show author name in posts, buth without link to his bio (for no to loose page wight of post)
just text: Author Name, without link to author bio
Can I do this (Theme Newsmag) Thank you!
Hi,
Try removing the link for the author from the code, in this file
– https://www.screencast.com/t/6LN0BOrUS
– https://www.screencast.com/t/KuRwYkezLJ1B
The author should display in the post page without any link attached to it, if that is what you want.
Thanks