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: 25275
    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: 25275
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    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: 25275

    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: 25275

    Sure.
    Thank you for the patience Dandy.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on in reply to: buddyblog show blog count in menu #9087

    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25275
    Brajesh Singh on 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

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    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.

  • Keymaster
    (BuddyDev Team)
    Posts: 25275

    Hi Alex,
    Hope you are doing well.

    If possible, please do send me the screenshots.

    Thank you
    Brajesh