Add custom subnav to buddypress userprofile tab \'favorites\'

This topic contains 5 replies, has 3 voices, and was last updated by  evocativemedia 5 years, 9 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #494341
    #494366

    Guust
    Moderator
    Post count: 29970

    That will require your own customization.
    One simple way to fix it without any coding is to swap your WP posts setup for a new CPT. Then you can use all GD functions for your “blog posts”.

    Thanks

    #494429

    evocativemedia
    Expired Member
    Post count: 28

    Yes I am aware of the customization part and I want to code it poperly, that is why I ask for a hook or anything. Is there a hook?

    The CPT solution is creative but might not be suitable for me whereas one of the core functionalities I am offering to users is running their own blog. If I make a blog CPT, can users create categories front-end? That would be a prerequisite..

    #494450

    Guust
    Moderator
    Post count: 29970

    Any CPT can be added from the front end.
    I’ll get a developer to have a look at your question too.

    Thanks

    #494453

    Kiran
    Moderator
    Post count: 7069

    Hello,

    If I make a blog CPT, can users create categories front-end?

    Front-end users are not allowed to create categories. Only admin have permission to create new categories.

    Kiran

    #494688

    evocativemedia
    Expired Member
    Post count: 28

    Oke I stuck with my initial setup in which blogposts are separated from geodirectory. I now made a custom subnav ‘blogposts’ to the ‘favorites’ tab in the following way:

    function setup_favorite_blogs_subnav() {

    $parent_slug = ‘favorites’;

    bp_core_new_subnav_item( array(
    ‘name’ => ‘Blogs’,
    ‘slug’ => ‘blogs’,
    ‘parent_slug’ => $parent_slug,
    ‘parent_url’ => trailingslashit( bp_loggedin_user_domain() . $parent_slug ) ,
    ‘screen_function’ => ‘show_my_favorite_blogs’,
    ));

    }

    add_action( ‘bp_setup_nav’, ‘setup_favorite_blogs_subnav’ );

    function show_my_favorite_blogs() {
    add_action( ‘bp_template_title’, ‘subnav_title’ );
    add_action( ‘bp_template_content’, ‘subnav_content’ );
    bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/plugins’ ) );
    }

    function subnav_title() {
    echo ‘My favorite posts’;
    }

    function subnav_content() {
    //Present a query here that fetches the user’s favorite blogposts and display them accordingly
    }

    I put this in my functions.php

    Thanks anyways guys!

Viewing 6 posts - 1 through 6 (of 6 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount