Replies
- Brajesh Singh on May 14, 2017 at 10:13 am in reply to: [Resolved] Registration page not coming in full width #9117
Hi Nim,
Please open a new topic with the new question.
I am not sure about the pastebin code. I guess it was related to home page registration or something. Please open a new topic with more context.Thank you
Brajesh - Brajesh Singh on May 13, 2017 at 4:39 pm in reply to: [Resolved] Branded Login – Logout redirect issue #9109
Hi Matthias,
Please ignore my comment about filtering. It is related to the way the urls can be modified.Please do the following.
1. Login to site.
2. Please visit a post
3. Now, right click on the logout url.Please post that here. I will have an idea about the issue by looking at it.
Thank you
Brajesh - Brajesh Singh on May 13, 2017 at 4:11 pm in reply to: [Resolved] Insert 'Member Type' in the Title of Member Directories #9106
Thank you.
- Brajesh Singh on May 13, 2017 at 4:11 pm in reply to: [Resolved] Branded Login – Logout redirect issue #9105
Hi Matthias,
My apology for the inconvenience.We are using get_page_link() to determine the current page’s url. Is there any other redirection plugin active on your site?
Also, Is there anything filtering the urls?
Thank you
Brajesh 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