Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: What would the URL be for buddypress profile #6343

    Hi Dave,
    I am sorry but this forum is not the beginners forum, we don’t teach php.
    Newbies are welcome but if you do not know where to put the code, in that case, It is better to let others do it for you.

    I will try to point again, if you are building a user slider, you need to know some js, a little bit of php skill.

    Please take a look at this file and see how the members are listed in the directory

    https://github.com/buddypress/BuddyPress/blob/master/src/bp-templates/bp-legacy/buddypress/members/members-loop.php#L51

    This will give you a pointer. If you are not comfortable with php, And if you plan to do it yourself, I will suggest checking out some beginners php tutorial for a few hours. That will give you the right perspective.

    Hope that helps.
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: BP Member Types – Type doesnt show in the list #6334

    Hi Dave,
    Please use imgur or any similar service. I hope you are on BuddyPress 2.7.2?

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Bp profile search issue #6333

    Hi Kalpesh,
    Thank you for posting.

    Here is a simple solution that I used for one of the dating based site I worked in past.

    1. define two member types ‘male’, ‘female’
    2. Assign proper member types to the user on registration. You may use my xprofile member type field plugin

    3. Now filter bp_after_has_members_parse_args
    a) If user is not logged in, no need to do anything, just return the args
    b) If we are here, the user is logged in, Get his/her member type
    c) Find out the opposite member type
    d) In the $args set ‘member_type’ = $opposite_membe_type

    e). In newer version of BuddyPress, you may avoid step c, d and set ‘member_type__not_in’ to current member’s member type

    That will work with BP Profile search and filter the lists based on the member type.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Valarie,
    you can either use a translation file to change the text or you can copy ‘ajax-register-form.php’ from the plugin to your theme and modify it.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] MediaPress + External Youtube link #6327

    Hi Xochi,
    Thank you.

    Yes, It will support all oembed providers by default. I am aware that souncloud supports oembed but I am not sure about Academia.com.

    You may see the list of supported providers by WordPress here

    https://codex.wordpress.org/Embeds

    We will allow custom URL too but the first priority is oembed.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: BP Member Types – Type doesnt show in the list #6326

    Hi Dave,
    are you inside the dashboard or front end?

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: What would the URL be for buddypress profile #6325

    Hi Dave,
    Welcome to BuddyDev.

    you can use the following php code to get the url

    
    
    $url = bp_core_get_user_domain( $user_id );//replace with user's id
    
    

    Hope that helps. feel free to ask any question. There is nothing wrong with your question and it is not stupid. We all learn by doing things 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Install buddypress branded login #6320

    Hi Daniele,
    I am sorry for the delayed reply.

    1. delete the copied blogin directory.

    2. Please upgrade to 1.3.0 we have just released
    https://buddydev.com/plugins/bp-branded-login/

    3. In the dashboard, you will see that you need to setup pages for login/reset/logout. Please set them and you will be done.

    If you want to further customize login, Please copy the blogin from the plugin to your theme and modify it as you see fit.

    Hope that helps.

    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Xprofile Member Type Field No Checkbox #6317

    Hi Marc,
    I am sorry that I was not able to put the update earlier. I was busy with our theme release . Please give me 2-3 more day and I look forward to put this in the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: blank profile user #6315

    Hi,
    Try disabling the custom theme and enabling Twenty Sixteen. Does that make it work?