Archived topic
Have reply on comments,
5 replies · Started by oboyhehehe on May 22, 2017
Hi, so i have this on my addinotal CSS
.entry-meta {
display: none;
}
as it's removes author, date on comments like i want but it does remove the function reply on comments.
Is it possible to have everything that the
.entry-meta {
display: none;
}
do but still have the function to reply to comments?
Thanks alot! :)
Hi Jonathan,
Can you try this instead:
.comment-meta .entry-meta a time {
display: none;
}
Let me know.
That kinda works, it still shows authors name in post on top and it shows the article related next below the article which i dont want.
So I want everything that gets hidden with the
.entry-meta {
display: none;
}
command but except the option to reply to comments to still show :)
Try this instead:
.inside-article .entry-meta,
.comments-area time {
display: none;
}
yes works great thanks.
You're welcome!