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: 25394
    Brajesh Singh on in reply to: How to make someone become featured members? #14426

    Please visit your members directory and mark users as featured. You can also mark users as featured from their profile.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Paolo,
    My apologies for the delayed reply.

    This problem can be broken into a few steps.

    1. Uploading the video
    2. Crunching the video to extract cover and converting to playable file format
    3. Using the converted video and cover and MediaPress video entry.

    Since your upload strategy is very different from what we have in MediaPress, you will most probably need to handle the first 2 part yourself.

    Here is how we save an uploaded file as MediaPress entry
    https://github.com/buddydev/mediapress/blob/master/core/ajax/mpp-ajax.php#L363

    The mpp_add_media() is used to add the media to a gallery.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] Ajax registor form customization #14402

    Hi Daniel

    That is happening since theme is applying that on the mobile. I had updated the css earlier. Will add it to the additional css again to fix it. Please allow me to update on the site today.

    Also, It is possible that the theme’s css override has higher priority. I will check and update you again today for the other fields.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Ajax registration – form has gone whacky #14401
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Herve,
    You are welcome.

    yes, The above hook fires when a user activates their account.

    For editing the profile, I will suggest sticking to ‘xprofile_updated_profile’ hook as the ‘xprofile_data_before_save’ fires each time an individual xprofile field is updated.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Ajax registration – form has gone whacky #14398

    Hi Diana,
    Please do grant me temporary admin access and I will update the css.

    About loading css/js on the login page. The scripts loaded on the hook ‘wp_enqueue_Scripts’ will not be loaded.

    In order to load css/js on the login page, we need to hook to ‘login_enqueue_scripts’ action.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Member type with paidmembership pro #14397

    Hi Ahmed,

    No problem with the English.

    Can you please tell me what is the issue with disabling the member type editing for user in this case?

    Do you want the users to change their member type(except the ENTREPRENEUR)?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] BuddyPress Activity Spam #14394

    Marking it as resolved due to lack of replies.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] transfer and store demo files #14390

    Thank you Monica.
    Glad you were able to transfer and use the plugin.

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Display sitewide activity for followers only #14388

    Hi Tosin,
    Please change this line

    
    $args['scope'] = 'following';
    
    

    to

    
    
    $args['scope'] = 'follow';
    

    It will list the user follower activities even if all members tab is selected.

    you don’t need the second code.

    Also, if you want to remove the All members tab, I will suggest copying the buddypress/members/index.php from your theme(or bp-legacy) to your current theme /buddypress/members/index.php and remove it.

    Regards
    Brajesh