BuddyDev

Search

[Resolved] homepage activity

Tagged: ,

  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #42715

    Hello, No worries!

    1. Yes, that’s it when we scroll down the page to the bars I want the banner to stay fixed and not move.

    2. Yes I am on the BuddyPress forum. Are you the devs?

    I didn’t really understand the block you have on your demo concerning members with their photos, but that’s no big deal.

  • Keymaster
    (BuddyDev Team)
    Posts: 24190
    Brajesh Singh on #42752

    Hi Léonard ,
    Thank you.
    I am sorry, I could not assist you earlier. will be doing tomorrow.

    Thank you
    Brajesh

  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #42833

    Hello,

    Excuse me, let me get back to you.

  • Keymaster
    (BuddyDev Team)
    Posts: 24190
    Brajesh Singh on #42835

    Hi,
    I am sorry, for the delay.

    Please add the following to your Additional Styles Section(Dashboard->Appearance->Customize->Additional Styles)

    
    
    .sticky-header {
    	
    	position:relative;
    	top: 0;
    }
    
    

    That will disable the fixed header.

    For the forum page, Please add the following php code (you can use any code snippet manager plugin)

    
    
    /**
     * Make the forums page single column in Community Builder Theme.
     */
    add_filter( 'cb_page_layout', function ( $layout ) {
    
    	// BuddyPress or bbPress is not active.
    	if ( ! function_exists( 'bp_is_user' ) || ! function_exists( 'is_bbpress' ) ) {
    		return $layout;
    	}
    
    	//makr bbPress pages as single column.
    	if (  is_bbpress() && ! bp_is_user() ) {
    		$layout = 'page-single-col';
    	}
    
    	return $layout;
    } );
    
    

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #42857
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24190
    Brajesh Singh on #42862

    Hi Leonardo,
    You are welcome.

    For the custom development, Please get in touch via our services page.
    https://buddydev.com/buddypress-custom-development-service/

    Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #43000
    This reply has been marked as private.
  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #43001
    This reply has been marked as private.
  • Participant
    Level: Initiated
    Posts: 15
    Léonard Grare on #43074

    PLease, help

    Thanks

  • Keymaster
    (BuddyDev Team)
    Posts: 24190
    Brajesh Singh on #43084

    1. You have 2 forms on registration as you are using the login form/some filters in the righ sidebar. You can make the registre page single column(Dashboard->Pages->register, edit and set the layout to single column) and only registration form will be visible.

    2. It is not possible to change the cover photo of the profile:-
    Please share a guest account to test it. Are you getting some error?

    3. You can use a plugin to rename wp-login.php to login ro anything. There are many plguins available for the same.
    Here are some exmaples.
    https://wordpress.org/plugins/wps-hide-login/
    https://wordpress.org/plugins/rename-wp-login/

    Regards
    Brajesh

The topic ‘ [Resolved] homepage activity’ is closed to new replies.

This topic is: resolved