BuddyBoss Home – Web Support Forums Plugins BuddyPress User Blog custom post type bookmark support

Viewing 5 posts - 1 through 5 (of 5 total)
  • Question

    #59518
    @kaypitre

    Hi there,

    I have custom post types that I’d like users to be able to bookmark. When I go to the actual custom post, the Bookmark option is there, however, when I go to the bookmarks page, I don’t see my bookmark in the list, only other regular posts that I’ve bookmark that are not custom.

    Can this be changed or is there a piece of code I can use?

    Thanks,

    Kay

    Answers

    #59718
    @vapvarun

    Hi @kaypitre, Custom post type support is not added yet inside BuddyPress User Blog

    You can do some minor edits to avoid any buttons display on custom post types

    Line 190 inside buddypress-user-blog/includes/bookmarks.php and
    Line 588 inside buddypress-user-blog/includes/recommend-posts.php

    
    is_single()
    

    with

    
    is_singular( 'post' ) 
    

    Regards
    Varun Dubey

    #59720
    @kaypitre

    So do I correctly understand that I can’t officially bookmark custom post types at this time? This code will remove the bookmark function from my custom post types?

    #59722
    @vapvarun

    yes exactly, We will add bookmarking and Recommended features for Custom Post type also
    It need to add options inside the plugin which allow site admin which custom post type they need to enable this features, like for few custom post type they might want to disable it.

    Regards

    #64391
    @michael

    @kaypitre In today’s release we have removed the Bookmark functionality from custom post types. It was displaying previously but not functioning, as a bug. The plugin is only designed to support recommending Blog posts. Other post types will complicate things as many would not work correctly with it, so we are limiting support to just blog posts (the original scope of the feature). Thanks for bringing the issue up to us.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘custom post type bookmark support’ is closed to new replies.