Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi There,

    – What version of Organize series did you update from?
    – Are posts still attached to their series when viewed from your admin?
    – Do you have any custom code and/or templates for Organize Series usage?
    – Have you tried changing temporarily to a different theme (one of the “twenty..” themes) and see if the issue persists?
    – Have you tried temporarily deactivating various plugins to see if one of them is conflicting with Organize Series (the https://www.ads-software.com/plugins/health-check/ is useful for doing this sort of thing)?

    Your’s is the first report I’ve seen for this, I suspect there’s a conflict with another plugin or maybe the theme. Hoping we can find out what’s happening in your case!

    Thread Starter zybersup

    (@zybersup)

    I think I found a clue to the problem.

    I have added some code to functions.php of my theme as the following code to filter out some posts from the home page. After commenting out these lines, the post list appears as it should.

    function exclude_category_home( $query ) {
    	if ( $query->is_home ) {
    		$query->set( 'cat', '-6,-7' );
    	}
    	return $query;
    }

    But I do not know why it does not affect the series post list in some page and why it affects a single post page even is_home is checked already. And where should I find the right solution for this problem.

    ahh ok, glad you discovered it was due to custom code you added. I don’t provide free support for issues related to folks adding their own custom code (especially when its unrelated to customizing organize series). As a pointer though, it sounds like you are only wanting to affect the main query. So you’ll want to make sure you do a $query->is_main_query() check in your conditional.

    Thread Starter zybersup

    (@zybersup)

    Thank you very much for your very very fast response and very very good support.

    And for your kindness pointing me the solution even this is not a problem of yours at all.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post list of series is disappeared after last update’ is closed to new replies.