Replies
hi Nathanial,
Thank you for clarifying.Please put the following css in your theme’s css fil
.bpajax-register-window #register_form .register-section { float: none !important; width: 100%; }If you want to make sure that the input field are full width too
You can add the following code too.
.bpajax-register-window #register_form input[type=text], .bpajax-register-window #register_form textarea, .bpajax-register-window #register_form #basic-details-section input[type=password], .bpajax-register-window #register_form #blog-details-section input#signup_blog_url { width: 100% !important; }Hope that helps.
regards
Brajesh- Brajesh Singh on May 13, 2017 at 3:52 pm in reply to: Is there any way to make the last login details visible? #9103This reply has been marked as private.
- Brajesh Singh on May 13, 2017 at 3:51 pm in reply to: [Resolved] Registration page not coming in full width #9102
Hi Nim,
Welcome to BuddyDev.Thank you for asking it. It is a problem with BuddyPress.
Here is a simple fix for register page
/** * Force to use assigned Page template with BuddyPress Register page * * @param $template * * @return string found template */ function buddydev_register_template_fix( $template ) { if ( bp_is_register_page() ) { $template_slug = get_page_template_slug( buddypress()->pages->register->id ); if ( $template_slug && ( $located = locate_template( array( $template_slug ), false ) ) ) { $template = $located; } } return $template; } add_filter( 'template_include', 'buddydev_register_template_fix', 100 );If you put it in your bp-custom.php or theme’s functions.php(may be child themes’). It will force WordPress to use assigned template for the register page.
Hope that helps.
Regards
Brajesh - Brajesh Singh on May 12, 2017 at 1:10 pm in reply to: Is there any way to make the last login details visible? #9095
Hi Sugar far,
Welcome to the BuddyDev Forum.Can you please provide more context to what are you trying to accomplish?
Thank you
Brajesh - Brajesh Singh on May 11, 2017 at 10:49 am in reply to: [Resolved] Issues about BuddyPress Extended Friendship Request #9089
Sure.
Thank you for the patience Dandy.Regards
Brajesh - Brajesh Singh on May 11, 2017 at 9:54 am in reply to: buddypress conditional profile fields not working in custom profile group fields #9088
Hi Thomas,
Welcome to BuddyDev.Are you using any custom field type plugin or do you have a custom field type on which the condition is applied?
Thank you
Brajesh Hi Gibby,
Thank you for posting.
we haven’t added that due to performance reasons. Calculating post count on each load will be bad, the other solution will be to syncing the total posts count whenever a post status is changed.The difference between friends/messages and the posts is that posts may have existed way before this plugin was activated.
It is possible to add the count, but the performance hit on site may not be justified. I will look into more details and see if WP offers a performant way to do it. Will post back later today.
Thank you
Brajesh- Brajesh Singh on May 11, 2017 at 9:50 am in reply to: Lightbox gallery is not showing all images #9086
Hi Ryan,
I will have the solution by this weekend. Please expect an update early Monday.I will update you again here.
Thank you
Brajesh - Brajesh Singh on May 11, 2017 at 9:49 am in reply to: [Resolved] Insert 'Member Type' in the Title of Member Directories #9085
Hi Lavish,
I am sorry but you can not do that. BuddyPress does not support that yet.A possible solution will be to create a custom page template with member loops. The url aesthetics may not be worth the time though.
- Brajesh Singh on May 11, 2017 at 9:47 am in reply to: Problem with Plugin Site Wide Activity: Remove reply users #9083
Hi Alex,
Hope you are doing well.If possible, please do send me the screenshots.
Thank you
Brajesh