Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Widget areas for Groups, Forums, etc

One approach that could work for you would be to place this in your sidebar.php perhaps after do_action(‘bp_after_sidebar_login_form) and use it to wrap a newly created widgit area as described I think earlier.

<?php if(bp_is_groups_component() && 'my-group-name' == bp_current_item()): ?>
<?php dynamic_sidebar( 'sidebar group page' ) ?>
<?php endif; ?>

Or simply hard code stuff between the conditional. Of course there are undoubtedly other approaches one could take

Skip to toolbar