Hi,
I have set up a grid blog page with only link custom posts.
I want to get rid of the comment count and of the link.
I have disabled the meta comments in theme options and “tinied” url but still see both. Could you please check?
Thanks very much in advance.
Hi oliviad!
Thank you for using Enfold.
You can hide the blog grid meta with this on Quick CSS or custom.css:
.slide-meta {
display: none;
}
Regards,
Ismael
Hi,
Thank you for the solution. It has fixed the comment count issue.
However, I still see the tinied URL of the link.
Thanks for your help in advance.
Hey!
Try adding the following in the Quick CSS or custom.css to hide the tiny URL displayed.
slide-entry-excerpt{
display: none;
}
Best regards,
Arvish
Thank you. However, it didn’t work with the above solution because you missed the “.”
It should be:
.slide-entry-excerpt{
display: none;
}
Regards.
Oops! :)
Thank you for the pointing that out. Glad it worked out for you.
Cheers!
Arvish
Hi,
I have another question.
I pasted this (see below) to get rid of the comment count on the blog but I need the date to show. The date has also gone. Can you please help?
.slide-meta {
display: none;
}
Thanks for your help!
Regards.
Hi!
Try this:
1. Remove
.slide-meta {
display: none;
}
2. Add this instead
.slide-meta-comments, .slide-meta-del{
display:none;
}
Regards,
Arvish
Hi,
I tried the new code. Now I have both comments and date. I only want the date, no comments.
Thanks for your help!
Regards!
Hey!
You need to modify this:
.slide-meta-comments, .slide-meta-del{
display:none;
}
to this:
.slide-meta-comments, .slide-meta-del{
display:none !important;
}
Regards,
Arvish
Hi,
Thank you very much for your help. This worked!
Regards.