• Resolved skj

    (@silja-jonsson)


    Hi there. I need your help to figure this out. I’m not a keen fan of child themes but would work with it for this fix,

    But is there an easy fix?

    I need help to change the “blog feed” (http://jonssonsstockdogs.com/nyheter/) from the original 2 posts per row layout, to a full content layout displaying without featured images etc. I want the old school layout where you could easily read EVERYTHING on the “new page” without having to click onto the original post page?

    Is there an easy fix? Please help me figure this out.

    Thx.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter skj

    (@silja-jonsson)

    BTW, thank you for creating the best theme! I truly appreciate how simple (yet with a classy look) this theme is!!! Absolutely LOVE it!

    Hi there,

    Thank you for your kind words. We appreciate it.

    First of all you need to add this style to Appearance → Customize → Additional CSS field:

    .blog-feed-posts .col-md-6 {
        width: 100%;
    }
    
    .blog-feed-posts .entry-thumb {
        display: none;
    }

    Then please open wp-content/themes/kale/parts/feed.php file and replace this line:

    <div class="col-md-6"><?php $kale_entry = 'small'; include(locate_template('parts/entry.php')); $kale_i++; ?></div>

    with this:

    <div class="col-md-6"><?php $kale_entry = 'full'; include(locate_template('parts/entry.php')); $kale_i++; ?></div>

    This should display full post without featured image in one row.

    Best

    Thread Starter skj

    (@silja-jonsson)

    You’re a rockstar, thank you! It worked like magic!!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Post Formats and Layout’ is closed to new replies.