Replies
- Brajesh Singh on September 24, 2018 at 7:02 pm in reply to: [Resolved] BuddyPress Signup Avatar. not correct cropping preview #17596
Hi Max,
This plugin has not been updated recently. I will test, I am not sure if we will be able to support it(depends on current state of requirement by BP). I will update you in 1-2 hours.Thank you
Brajesh - Brajesh Singh on September 24, 2018 at 6:59 pm in reply to: BuddyPress Ajax Registration. Add PCRE regex validation. #17595
Hi Max,
Where do you need support for the validation? Please let me know.Thank you
Brajesh - Brajesh Singh on September 24, 2018 at 12:49 pm in reply to: [Resolved] remove tabs from user profiles #17588
Hi Chris,
Once a tab is removed by the above method, It can not be accessed. Do you really want that?If yes, why not disable the components instead if you don’t need them?
- Brajesh Singh on September 24, 2018 at 12:41 pm in reply to: [Resolved] remove tabs from user profiles #17586
HI Chris,
Please remove this line at the bottom
bp_core_remove_nav_item( 'profile');It should not be called directly.
Now, you can add the following to remove profie tab
/** * Remove profile nav. */ function buddydev_remove_profile_tab() { bp_core_remove_nav_item( 'profile' ); } add_action( 'bp_xprofile_setup_nav', 'buddydev_remove_profile_tab' );That will remove profile tab for all.
- Brajesh Singh on September 24, 2018 at 12:28 pm in reply to: [Resolved] remove tabs from user profiles #17583
Hi Chris,
Please post the complete code for removing the tab. It should not be called directly and should be called on some action(bp_setup_nav) or similar.Regards
Brajesh - Brajesh Singh on September 24, 2018 at 12:18 pm in reply to: [Resolved] BuddyBlog not selecting tags #17581
Hi Kreatsya,
Welcome to BuddyDev forums.Please allow me to check it today and get back to you.
Thank you
Brajesh - Brajesh Singh on September 24, 2018 at 12:17 pm in reply to: [Resolved] remove tabs from user profiles #17580
Hi Chris,
Please usebp_core_remove_nav_item( 'profile');The code you have used will cause fatal and that’s why your site got down.
Let me know it if works for you or not?
Regards
Brajesh - Brajesh Singh on September 23, 2018 at 10:46 pm in reply to: [Resolved] Report Popup not completely visible #17577
Hi Carsten,
Thank you for posting.I am looking at this and the two issues may be related.
1. Thank you. Will add in the update.
2. I am sorry but it is very complex than what you might have thought.
The theme is using bp_member_header_actions inside the<ul>element and that is problematic.Any plugin adding button is not aware of the wrapper type used. We follow the default BuddyPress convention of using div as a wrapper.
My suggestion, like you have added “li” for the other buttons, you should do the same for the the moderation button too. I will push an update in next 4-6 hours to make it easier to capture the markup for button.
Thank you
Brajesh - Brajesh Singh on September 23, 2018 at 8:15 am in reply to: [Resolved] After plugin activation -> all users lost #17573
Hi Carsten,
Thank you for confirming the fix. I am glad it worked.I sincerely appreciate your patience.
Have a great day.
Regards
Brajesh - Brajesh Singh on September 23, 2018 at 7:47 am in reply to: [Resolved] After plugin activation -> all users lost #17571
Hi Carsten,
There was an issue in our table creation statement which only appeared on some of the mysql version. It was related to a datetime field.
Since the table were not created, the plugin started throwing too many notices.
Please upgrade to 1.0.5. After upgrade, Please deactivate the plugin and reactivate it. It will create the tables which were not created earlier and will not throw any notice after that.
Please let me know how it goes.
Regards
Brajesh