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

    #56720
    @dreammworldd

    shall we restrict some pages based on user type?

    Answers

    #56898
    @vapvarun

    Hi @dreammworldd

    You can use any membership plugin you can protect pages, cpt as per their membership level. You can link member types with user levels to make it functional.

    Regards
    Varun Dubey

    #63063
    @dreammworldd

    Dear Varun.,

    Thanks for your reply.. Have a new query.. How to search members and usertypes in search box. we are using ajax search lite.

    #63074
    @vapvarun

    Hi @dreammworldd, that’s plugin specific functionality they support BuddyPress member search or not. Seems they do not BuddyPress support.
    Regards

    #63254
    @dreammworldd

    Dear varun.,

    We have three types of users in buddypress. using buddyboss member type plugin. Examble: Three user types as: 1) Individual users, 2)Tutors 3) institutions., we would like to have FOLLOW options for individual users to just FOLLOW Tutors and institutions. how to do it. or plugins avilable for this function. thanks in advance 🙂

    #64730
    @vapvarun

    Hi @dreammworldd
    you will need to edit following template file inside child theme

    /buddypress/members/members-loop.php
    /buddypress/members/single/member-header.php
    with conditional logic

    
    $member_type = bp_get_member_type( bp_get_member_user_id() ); 
    if ($member_type="individual")
    {
    //warp follow button code within it
    }
    

    Regards
    Varun Dubey

Viewing 6 posts - 1 through 6 (of 6 total)
  • The question ‘Page Restriction’ is closed to new replies.