Can you give offer some code so that the # of comments button under each author’s name in the authors box can be removed, since the site doesn’t accept comments.
Also is there a way to remove the authors photo box so that only authors names are listed?
Also is there a way to list writers alphabetically by last name instead of first? The only options you offer are first name and # of posts — not ideal. Thanks.
-
This topic was modified 7 years by
jpugatch.
Hi,
In order to hide the comments and author image from the author page and authors elements you can use this custom css
-> https://www.screencast.com/t/HADMeu3pIp
-> https://www.screencast.com/t/Gwdoae5Eqi
.td_top_authors img,
.td_block_authors .td-author-comments-count,
.author .td-author-counters span:last-child { display:none; }
.td_top_authors .item-details {
margin-left: 0;
}
You’ll need to set the code in the Theme panel>Custom code> Custom css
Unfortunately for the moment this is the only filter alphabetical that you can apply using our theme, I think that in the coming updates there will be some more options for sort and filter.
Thank you!
Hey!
What CSS do I need to use to remove black comment box, author’s name and time posted in block 5 widget?
I use facebook comments so now I can have tons of comments but it counts as 0:
https://www.streetartutopia.com/?p=1143
-
This reply was modified 6 years by
Vidaregner.
Hello,
If you want top remove all those from all blocks then you can use the options from theme panel -> http://prntscr.com/ppo02o ->https://forum.tagdiv.com/meta-info-modules-blocks/ or if you want to apply only on block 5 then you can use a custom css like this one -> http://prntscr.com/ppo1j1
.td_block_5 .td-module-meta-info{
display: none;
}
The code need to be set in theme panel> Custom code> Custom css
Hope this will help you!
Thank you!