[Resolved] Archive/Category Displays

Home Forums Support [Resolved] Archive/Category Displays

Home Forums Support Archive/Category Displays

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #216105
    Josep

    Alright – this may not be the location for this discussion and if it’s not – no problem. I’m trying to figure out a way for my category pages to display JUST the featured images of posts.

    What I would like it to look like: http://www.artofboardgaming.com/insta/

    I do that page manually. I’d like my category pages to look like that and look like that automatically.

    Example category page: http://www.artofboardgaming.com/category/reviews/

    I’ll keep looking for plugins for now.

    #216114
    Tom
    Lead Developer
    Lead Developer

    You could use my Show Posts plugin: https://wordpress.org/plugins/wp-show-posts/

    However, that won’t convert your category pages, it will just allow you to create new pages that update with the category posts automatically.

    Otherwise you’ll need to find another plugin, or mess around with some CSS:

    .category .post .inside-article > *:not(.post-image) {
        display: none;
    }
    
    @media (min-width: 769px) {
        .category .type-post {
            width: 33%;
            float: left;
        }
        .category .paging-navigation {
            clear: both;
        }
    }

    Hope this helps ๐Ÿ™‚

    #216365
    Josep

    That plug-in is…. a-maze-ing.

    Tom for the win (again) and topic is resolved.

    #216388
    Tom
    Lead Developer
    Lead Developer

    Awesome ๐Ÿ™‚ Glad you like it!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.