Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Ajax Registration force one column #9104

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Sugar far,
    Welcome to the BuddyDev Forum.

    Can you please provide more context to what are you trying to accomplish?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Sure.
    Thank you for the patience Dandy.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    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