Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: [Resolved] Another request for Theme Help – Trying to get Shoutbox theme to work in BuddyPress


@mercime
Participant

@mercime

Open up sidebar-buddypress.php and add the following at the very top, above other code:

`
`
then add the following at the very bottom of sidebar-buddypress.php [updated]
`

jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});

`

Save file.

Upload both to wp-content/themes/shoutbox

Use some or all of the styling mods on BP components used in Twenty Ten https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

Skip to toolbar