Replies
- Princy Cromacio on October 25, 2021 at 9:04 am in reply to: [Resolved] Better Registration Guide still accurate? #41215
Glad to Know that
Cromacio - Princy Cromacio on October 25, 2021 at 8:32 am in reply to: [Resolved] Better Registration Guide still accurate? #41213
Hi Psycho,
You Added the Function, but You Forgot to Call the Function
Add This-add_action( 'bp_signup_pre_validate', 'buddydev_inject_username_as_fullname' );
Also, I Think The Step 3 Mentioned Here- https://buddydev.com/buddypress-better-registration-part-1-remove-full-name-confirm-password-from-buddypress-registration/ could be Added too.
function buddydev_disable_fullname_required_attributes( $atts, $field_name ) { global $field; $fullname_field_id = 1; if ( $field && $fullname_field_id !== $field->id ) { return $atts; } foreach ( $atts as $key => $value ) { if ( 'required' === $value ) { unset( $atts[ $key ] ); break; } } return $atts; } add_filter( 'bp_get_form_field_attributes', 'buddydev_disable_fullname_required_attributes', 10, 2 );
Hope That Helps..
Cromacio - Princy Cromacio on October 25, 2021 at 8:08 am in reply to: [Resolved] Better Registration Guide still accurate? #41209
Hey There Psycho,
I Think that Should Work Perfectly Even Now.Go Ahead And Give it A Try
Cheers, Cromacio - Princy Cromacio on October 24, 2021 at 10:50 am in reply to: [Resolved] BuddyPress Activity ShortCode: how to hide “reply” and “Comment” tabs #41190
Hey There,
Just an Update. Try This Too-body .page-id-01.button.acomment-reply.bp-primary-action.bp-tooltip { display: none !important; } body .page-id-01.acomment-reply.bp-primary-action { display: none !important; }
If This too Doesn’t Help You,
Could You Share a Link to the Page where you Use Buddypress Activity Shortcode?
It Will Let me Provide You Better Assistance.Cheers, Cromacio
- Princy Cromacio on October 24, 2021 at 10:40 am in reply to: [Resolved] BuddyPress Activity ShortCode: how to hide “reply” and “Comment” tabs #41189
Hi Tiziano,
Try Adding These, Just Replace the 01 Below by the Page ID on which You want them to Be Hidden.body.page-id-01.button.acomment-reply.bp-primary-action.bp-tooltip { display: none !important; } body.page-id-01.acomment-reply.bp-primary-action { display: none !important; }
I’m Not a Pro though, Hence not Pretty Much Sure About that.
Let me Know if That Works.
If It Doesn’t I’m Sure that You Will be Getting it Answered by Someone Else Here.Good Luck,
Cromacio - Princy Cromacio on October 22, 2021 at 4:27 pm in reply to: [Resolved] Change Number of Comments Shown by Default in Activity Stream #41141
Hi Brajesh,
Thanks For Your Reply.
Just Here to Tell that I Got It Solved by Raising a Ticket at Wbcom Designs Support.Thanks, Cromacio
- Princy Cromacio on October 22, 2021 at 6:44 am in reply to: [Resolved] Change Number of Comments Shown by Default in Activity Stream #41129This reply has been marked as private.
- Princy Cromacio on October 22, 2021 at 6:20 am in reply to: [Resolved] Change Number of Comments Shown by Default in Activity Stream #41128This reply has been marked as private.
- Princy Cromacio on October 21, 2021 at 10:22 am in reply to: [Resolved] BuddyPress Activity ShortCode: how to hide “reply” and “Comment” tabs #41100
Hey There Tiziano,
I Think You Could Use CSS to Hide The Elements you Don’t Want to Show
Try Adding These Lines to Addtional CSS-.button.acomment-reply.bp-primary-action.bp-tooltip { display: none !important; } .acomment-reply.bp-primary-action { display: none !important; }
Hope that Helps You
Cheers, Cromacio