Replies
- Brajesh Singh on May 9, 2017 at 9:14 am in reply to: [Resolved] Hide Basic (primary or first) profile group tab from edit section #9042
Hi Kalpesh,
I am sorry but we won’t be able to offer you much help on it. Our free support is limited to time constraints and this topic needs much more than that.I can still point you in the direction
1. You will need a way to redirect user to field group two and make it as default landing sub nav for edit
2. You will need to filter the Profile Groups list on the edit page3. And you may/may not need to modify the profile loop.
All the best.
Regards
Brajesh - Brajesh Singh on May 9, 2017 at 9:06 am in reply to: [Resolved] Insert 'Member Type' in the Title of Member Directories #9041
Hi Lavish,
You can change$type_object->labels['singular_name']to
$type_object->labels['name']In the above code to do that.
Regards
Brajesh - Brajesh Singh on May 9, 2017 at 9:05 am in reply to: Lightbox gallery is not showing all images #9040
Hi Ryan,
I am sorry but it is still an issue for non activity media list/galleries. We could not work earlier but I can assure that we will release a fix this week.Thank you
Brajesh - Brajesh Singh on May 9, 2017 at 9:04 am in reply to: How to make a Shortcode to display post thumbnail of certain category #9039
Hi Dandy,
There may be already existing plugin for it.Are you looking for something like this?
https://wordpress.org/plugins/category-posts/
May be simpler version?Also, If you want to code it yourself, a look at WP_Query will help you.
Regards
Brajesh Hi Nitin,
Thank you.Please allow me to check and post back to you. It could be a result of one of our recent updates.
Thank you
BrajeshHi Nathanial,
Thank you for posting.It is the default behaviour. Most probably some css is conflicting with theme.
Can you please link me to the site(where it is enabled) and I can provide a quick solution.
- Brajesh Singh on May 9, 2017 at 8:46 am in reply to: [Resolved] Mobile Lightbox sitewide gallery #9036
Hi Ryan,
As far as I see, you have the lightbox disabledenable_activity_lightbox: 0 enable_gallery_lightbox: 0Can you please enable it from the settings and let me know if that works.
Regards
Brajesh Hi Justin,
As you may see, the article loop is being used from ghostpool’s theme.Either I will need access to that file to see how they are fetching the thumbnail or the better option is to contact them and ask them for support.
If it was a normal loop, It should have worked with the thumbnail feature too(and length of text too).
Please contact them and let me know if they are able to help or not?
Thank you
Brajesh- Brajesh Singh on May 9, 2017 at 8:40 am in reply to: Problem with Plugin Site Wide Activity: Remove reply users #9034
Hi Alex,
Please delete the Sitewide activity widget using ftp(or plugin admin if accessible)Then reinstall it. It seems you have one version already installed and got another one too.
Please try and let me know.
Thank you
Brajesh - Brajesh Singh on May 7, 2017 at 11:11 pm in reply to: [Resolved] Insert 'Member Type' in the Title of Member Directories #9021
Hi Lavish,
Thank you for using the BuddyPress Members Type plugin.
For member type directory title, since BuddyPress currently does not support it, you can put the following in your bp-custom.php to make it work
/** * Modify members directory title for the member types * * @param array $title title parts * * @return array */ function bpdev_modify_page_member_directory_title( $title ) { if ( ! bp_is_members_directory() ) { return $title; } $member_type = bp_get_current_member_type(); if ( ! $member_type ) { return $title; } $type_object = bp_get_member_type_object( $member_type ); $sep = apply_filters( 'document_title_separator', '-' ); $title['title'] = $title['title'] . ' ' . $sep . ' ' . $type_object->labels['singular_name']; return $title; } add_filter( 'document_title_parts', 'bpdev_modify_page_member_directory_title', 1000 );Hope that helps.