Replies
- 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 - Brajesh Singh on January 25, 2018 at 10:04 pm in reply to: [Resolved] MediaPress Lightbox 50/50 success/failure #13145
Thank you.
From the recording it looks like an issue with the status.From our above conversation, am I correct in assuming that the user is able to view the media on single page?
- Brajesh Singh on January 23, 2018 at 10:15 pm in reply to: [Resolved] Member Types Pro – assign member type on signup based on role? #13127
Thank you.
I have mailed you a copy of the updated plugin. Please check your email for the updated version of plugin which allows mapping from the Memberships to Member typehttps://i.imgur.com/HFEU7KT.png
Best Regards
Brajesh