Support » Plugin: WP Idea Stream » User Ideas Feed Filled with other Content Types

  • I just installed IdeaStream and updated my BuddyPress to 2.5.2. When I look at my user’s Ideas tab on my user profile, I see entries from the BadgeOS plugin’s custom content type (badges) that I also have installed on the system.

    I’d like for the Ideas tab on user profiles to only show Ideas generated using the IdeaStream plugin.

    https://wordpress.org/plugins/wp-idea-stream/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mathieu Viet

    (@imath)

    I’ve quickly checked the badgeOs code and don’t see a custom post type names ‘ideas’ so i’m a bit surprised.

    Can you test this filter to make sure it’s a post type name conflict?

    function dwb325_get_idea_post_type( $post_type ) {
         return 'dwb325_ideas';
    }
    add_filter( 'wp_idea_stream_get_post_type', 'dwb325_get_idea_post_type', 10, 1 );
    Thread Starter dwb325

    (@dwb325)

    Hi. Sorry I wasn’t clear.

    The Ideas tab on the user profile lists all posts, including badges, blog posts, new group pages, etc.

    The Ideas tab on a BuddyPress group works. It only shows Ideas.

    Should I still try to test that filter. If so, please tie me a bit more instruction related to where I put that code.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘User Ideas Feed Filled with other Content Types’ is closed to new replies.