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: 25454

    Hi Carl,
    Welcome back 🙂
    We are doing well and hope the same for you.

    Is there any chance that you are using a plugin that does some thing with the user activation? Like our Auto Activate Auto Login redirect plugin or something similar?

    The above code is hooked to activation action, so just trying to find out a possible reason.
    Btw, did you put it in bp-custom.php or functions.php?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Andrew,
    Thank you.
    Is that the only content in your functions.php ?
    If yes, all we need to do is add http://pastebin.com/smwaUGXM

    But if it is not all the content of functions.php, then pleas post the complete content.

    Thank you
    Brajesh

    • This reply was modified 9 years, 10 months ago by Brajesh Singh.
  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Andrew,
    I am sorry that you had to go through such inconvenience.
    Most probably, The code got mixed in functions.php

    May I ask if you are comfortable with php? If not, Can you please post the code on pastebin? I can update the file myself.

    I will update this plugin in future to allow using selector from the backend settings to make it easy. For now, I don’t see another alternative.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: [Resolved] Widget Format #4854

    HI Mike,
    I am sorry, The code should be this for gallery

    
    
    .widget_mpp_gallery_list_widget .mpp-u-1-1{
    	width: 50% !important;
    }
    
    

    Please use it instead. Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: BP emails are plain text not html #4852

    Hi Lavish,
    Which plugin are you using for enabling MailGun? Most probably it is not underatnding the html email headers.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: [Resolved] Widget Format #4851

    Hi Mike,
    You can add another rule after

    
    .widget_mpp_media_list_widget .mpp-u-24-24{
    		width: 50% !important;
    }
    
    
     .widget_mpp_gallery_list_widget .mpp-u-24-24{
    		width: 50% !important;
    }
    
    

    That will do it.
    hope that helps. I had provided the code for text aligning left as I read in your posts you wanted something like that.
    I am glad you found the default to be better 🙂

    Hope this helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: [Resolved] Rename Wall Photo #4850

    Hi Nick,
    Are you using MediaPress 1.0.6?

    If yes, It can be easily done.

    Step 1: Force MediaPress to avoid creating the context gallery on demand:-

    
    remove_filter( 'mpp_get_context_gallery', 'mpp_get_activity_wall_gallery', 10, 2 );
    
    

    Now, Provide your own context gallery helper by adding to the filter ‘mpp_get_context_gallery’ Please see how we do it in

    
    mpp_get_activity_wall_gallery()
    

    You can check the $args’component’] ==’groups’ to check it it is for groups wall gallery. Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454
    Brajesh Singh on in reply to: Mobile Upload not working #4849

    Hi Nick,
    I am sorry for the inconvenience. MediaPress will work out of the box on mobile devices. It is not tested with Apresser plugin though.

    Please check the demo of MediaPress and see if you are able to upload or not?

    For adding media to gal;lery, Please see this post
    https://buddydev.com/support/forums/topic/custom-gallery-from-buddypress-fields/#post-2805

    For getting wall gallery id

    
    
    $gallery_id = mpp_get_wall_gallery_id( array(
    
    'component' => 'members',
    'component_id' => bp_loggedin_user_id(),
    'media_type'   => 'photo'
    ) );
    
    

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Andrew,
    Please put it into your themes/or child theme’s functions.php

  • Keymaster
    (BuddyDev Team)
    Posts: 25454

    Hi Simon,
    It is something I will like to address in 1.1. The first step will be planning.
    do you add bbPress as another component in MediaPress(currently we have sitewide/user/groups). Do w store all media in single gallery or do we create per forum/per topic galleries as and when needed?
    Also, we will need to integrate MediaPress uploader instead of the WordPress uploader in that case.

    Hope that helps.