Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Richie KS

    (@rkcorp)

    1. try add this in customizer->general->custom css to increase its height

    @media only screen and (min-width: 768px)
    #post-entry article.post-style-magazine {height: 480px;}
    }

    2. its normal to have all category posted in latest post. the homepage will not show only one category ‘my article’ unless you add some custom query to show only posts from the ‘my article’ category.

    category section also seem fine.
    //akshayrao.net/category/my-povs/
    – only one post here with category my povs
    //akshayrao.net/category/my-articles
    – couple of posts here all tag with ‘my article’ category, no my-povs category.

    Thread Starter akshayraodotnet

    (@akshayraodotnet)

    Hi Richie,
    Thanks for a quick reply. I’ve applied the above code in custom CSS but the problem persists. Please check my website http://www.akshayrao.net and suggest.

    Also w.r.t pt. 2, request you to please share a custom query for listing articles from only ‘my articles’ in the page than all the posts. The homepage can have all the articles published on the website.

    Thanks again!

    Theme Author Richie KS

    (@rkcorp)

    sry, should be

    @media only screen and (min-width: 768px) {
    #post-entry article.post-style-magazine {height: 480px;}
    }

    Also w.r.t pt. 2, request you to please share a custom query for listing articles from only ‘my articles’ in the page than all the posts. The homepage can have all the articles published on the website.

    i don’t quite understand this. the category page already showing which category it should be. now if you want the homepage to show only certain category. try add this to functions.php

    function meso_add_cat_home_query() {
    return query_posts('cat=4');
    }
    add_action('bp_before_post_query','meso_add_cat_home_query');

    replace 4 with your own cat id.

    Thread Starter akshayraodotnet

    (@akshayraodotnet)

    Awesome! It works wonderfully!

    Thank you so much.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Continue Reading Alignment and Categories’ is closed to new replies.