Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #327819

    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.

    #327957

    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

    #328659

    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.

    #328716

    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

    #328725

    Thank you. However, it didn’t work with the above solution because you missed the “.”

    It should be:

    .slide-entry-excerpt{
    display: none;
    }

    Regards.

    #328729

    Oops! :)

    Thank you for the pointing that out. Glad it worked out for you.

    Cheers!
    Arvish

    #328731

    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.

    #328742

    Hi!

    Try this:

    1. Remove

    .slide-meta {
    display: none;
    }

    2. Add this instead

    .slide-meta-comments, .slide-meta-del{
    display:none;
    }

    Regards,
    Arvish

    #328766

    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!

    #328823

    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

    #328846

    Hi,

    Thank you very much for your help. This worked!

    Regards.

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Problem with link post / grid format’ is closed to new replies.