Removing Meta Data from Post Previews

Home Forums Gillion Theme Removing Meta Data from Post Previews

Home Forums Gillion Theme Removing Meta Data from Post Previews

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    RESOLVED Posts
  • Paul33
    Participant

    Using Masonry Card page as my static home page. Is it possible to remove the meta data under each card/post preview ….. ie: “AUTHOR | 1 min read” and also, if I want to go down this route, the category which sits above the title ?

    Solution for this topic

    Hi @Paul33,

     

    I hope you are well today and thank you for your question.

     

    You can remove it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .blog-style-masonry-card article .post-categories-container,
    .blog-style-masonry-card article .post-meta {
        display: none;
    }

     

    Best regards,
    Shufflehound team

    Paul33
    Participant

    Good job – worked perfectly – thank you !

    Paul33
    Participant

    Can I add a related question ……….

     

    How do I remove the same meta data from the actual post pages themselves ?

    Use below CSS code to remove it from single post pages.

     

    .single-post article .post-categories-container,
    .single-post article .post-meta {
        display: none;
    }

    Paul33
    Participant

    This CSS works so long as the post style is “standard” but if I use “slider” style on the post page then it returns. I am mostly using “slider” post style so is there Custom CSS to remove meta data from that style or even all styles?

    Could you please share me the page URL from your site where it is displaying so that i can help you to remove it?

    Paul33
    Participant

    Details entered in private box below this one – hope that works !

     

    Solution for this topic

    You can remove it from that page using below custom CSS code.

     

    .single-post .post-categories-container,
    .single-post .post-meta {
        display: none;
    }

    Paul33
    Participant

    Brilliant – worked perfectly – thank you !

    You are always welcome here 🙂

Viewing 11 posts - 1 through 11 (of 11 total)