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.
Hi Léonard ,
Thank you.
I am sorry, I could not assist you earlier. will be doing tomorrow.Thank you
BrajeshHi,
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
BrajeshHi Leonardo,
You are welcome.For the custom development, Please get in touch via our services page.
https://buddydev.com/buddypress-custom-development-service/Regards
Brajesh1. 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.