Replies
- Brajesh Singh on January 26, 2018 at 2:19 pm in reply to: Allow capital letters and underscores in buddypress registration form. #13163
Hi Axel,
I am sorry but I am unable to provide any assistance on this currently due to lack of time.Adding Uppercase etc on multisite needs investigation and at least 1-2 hours of effective time, and I am unable to have that much free time at the moment due to other priorities.
If you are able to find a script that allows compatibility, I can provide an update the for username changer.
P.S:- Or I will look at this on my on peace when the things get a little bit less crowded here.
Thank you
Brajesh - Brajesh Singh on January 26, 2018 at 2:13 pm in reply to: Problem Using Conditional Profile Fields for BuddyPress Plugin #13162This reply has been marked as private.
- Brajesh Singh on January 26, 2018 at 12:40 am in reply to: Problem Using Conditional Profile Fields for BuddyPress Plugin #13155This reply has been marked as private.
- Brajesh Singh on January 25, 2018 at 11:06 pm in reply to: [Resolved] Mediapress new optin request – Hide Empty Galleries #13153
Hi George,
Please use the following code/** * Hide empty MediaPress Gallery from admin galleries list. * * @param WP_Query $query query object. */ function mpp_admin_hide_empty_galleries_from_galleries_page( $query ) { if ( ! is_admin() || defined( 'DOING_AJAX' ) || ! $query->is_main_query() ) { return; } if ( $query->get( 'post_type' ) != mpp_get_gallery_post_type() ) { return; } $meta_query = array( array( 'key' => '_mpp_media_count', 'value' => 1, 'compare' => '>=', ), ); // side effect: it will override any other meta query for the galleries list. $query->set( 'meta_query', $meta_query ); } add_action( 'pre_get_posts', 'mpp_admin_hide_empty_galleries_from_galleries_page' );Hope this helps.
Regards
Brajesh - Brajesh Singh on January 25, 2018 at 10:53 pm in reply to: Error in Community Builder when using BP Profile Search #13152
Hi Keith,
Thank you. It was only tested with BP Profile Search 4.5.I have updated the theme and removed the code that used to add custom forms. It will work with 4.8 now too.
Please upgrade to 1.1.2
https://buddydev.com/themes/community-builder/
Thank you
Brajesh - Brajesh Singh on January 25, 2018 at 10:37 pm in reply to: [Resolved] Buddyblog: Insert post image button doesn't show on Media menu. #13151This reply has been marked as private.
- Brajesh Singh on January 25, 2018 at 10:10 pm in reply to: [Resolved] Member Types Pro – assign member type on signup based on role? #13149
Thank you. Glad that it worked.
Best regards
Brajesh - Brajesh Singh on January 25, 2018 at 10:08 pm in reply to: filter the buddypress members in the list of members #13148
Hi Herve,
Sorry, but there is no straightforward way to do it based on the xprofile data(atleast in 2.9.x version).Regards
Brajesh - Brajesh Singh on January 25, 2018 at 10:07 pm in reply to: BuddyPress Branded Login – Reset code issue #13147
H Julia,
Hope you are doing well.Are you using any other plugin that allows logging/password reset too?
Thank you
Brajesh - Brajesh Singh on January 25, 2018 at 10:06 pm in reply to: My Gallery/Galleries/Album/s title/label #13146
You can translate to English.
Just make sure to use the proper suffix in the generated mo file(e.g -en_Us.mo or -en_GB.mo etc).
By default, if you haven’t specified a locale, it is set to en_US.
Please give it a try and let me know if that works for you or not?
Thank you
Brajesh