Replies
- Brajesh Singh on August 27, 2016 at 12:36 am in reply to: Buddypress activity comment feature request #5290
Hi Arvind,
Please take a look at your theme’s activity/entry.php . All the button comes from the div ‘activity-meta’So, except the 2 buttons, put everything in your dropdown and then it should work.
Hi Christian,
Please use css to make it look better.Also, You don’t have premium subscription, Please avoid using premium forums and use the community support(I have moved the topic there).
Premium forums are for paying customers to allow us serve them in timely matter. I hope you understand it.
PS: Please do not buy premium subscription for MediaPress, we will not be able to help much on NFSW site.
Hi,
My apologies for the inconvenience.
The problem happens when a theme/plugin company uses the ‘bp_core_activated_user’ inappropriately and add a redirect on it without checking whether a request is coming via ajax or is normal request.I have seen it happening with WPLMS theme earlier.
As far as I checked with Boss 2.2.2, I don’t see any issue. If you are a developer, Please do a search for the ‘bp_core_activated_user’ in your code and let me know if you find something.
Thank you.
Brajesh- Brajesh Singh on August 25, 2016 at 10:26 pm in reply to: [Resolved] Add the member type value (i.e. student, teacher ecc) in the member page title #5280
Hi Elio,
Please add thisfunction buddydev_append_membertype_in_page_title( $title, $component ) { if ( $component != 'members' ) { return $title; } $member_type = bp_get_current_member_type(); if ( ! $member_type ) { return $title; } $type_object = bp_get_member_type_object( $member_type ); $title = $title . ': ' . $type_object->labels['singular_name'] ; return $title; } add_filter( 'bp_get_directory_title', 'buddydev_append_membertype_in_page_title' , 10, 2 );and let me know if it works for you or not?
Thank you
Brajesh - Brajesh Singh on August 25, 2016 at 9:59 pm in reply to: How to Use Third Party Lightbox Plugin to Open Images #5279
Hi Simon,
Please use this plugin
https://github.com/mediapress/mpp-ligtbox-colorboxIt needs the ligtbox plus plugin installed too.
It seems that it is not available on WordPress anymore. You can use any plugin which uses colorbox or download it from here too
https://www.23systems.net/wordpress-plugins/lightbox-plus-for-wordpress/Hope that helps.
- Brajesh Singh on August 25, 2016 at 8:07 pm in reply to: [Resolved] Add the member type value (i.e. student, teacher ecc) in the member page title #5277
Hi Elio,
Thank you for the detailed reply.It is for the title in the browser(The
attribute). Are you referring to Directory title inside the page? - Brajesh Singh on August 25, 2016 at 8:01 pm in reply to: Buddypress activity comment feature request #5275
Hi Arvind,
It is theme dependent. Please look for thisbp_legacy_theme_hide_commentsin your buddypress.js and you will see the default is set to 5. You can update it there.
Hope that helps.
- Brajesh Singh on August 25, 2016 at 7:51 pm in reply to: [Resolved] "Select Files" button in Gallery not working #5273
Hi Cody,
Thank you for confirming. I am glad it worked. All the best with your website 🙂Regards
Brajesh - Brajesh Singh on August 25, 2016 at 6:54 pm in reply to: BP notifiy post author – read notifications #5271
Hi Brincy,
Welcome to BuddyDev.It should be the default behavior. I am checking and will report back.
Thank you
Brajesh - Brajesh Singh on August 25, 2016 at 6:52 pm in reply to: [Resolved] Add the member type value (i.e. student, teacher ecc) in the member page title #5270
Hi Elio,
Welcome to BuddyDev.Please put this code in your bp-custom.php or in your theme’s functions.php and It will do
function buddydev_append_membertype_in_directory_title( $bp_title, $old_title ) { $member_type = bp_get_current_member_type(); if ( ! $member_type ) { return $bp_title; } $type_object = bp_get_member_type_object( $member_type ); $bp_title['title'] = $bp_title['title'] . ': ' . $type_object->labels['singular_name'] ; return $bp_title; } add_filter( 'bp_modify_document_title_parts', 'buddydev_append_membertype_in_directory_title', 10, 2 );Hope that helps.
Regards
Brajesh