-
Henry Wright replied to the topic redirect buddypress groups page to forum page in the forum Miscellaneous 10 years ago
Hi @sherry22
You can redirect pages using the
wp_redirect()
function. For example:function my_redirect() {
if ( bp_is_groups() && ! bp_is_group_forum() ) {
wp_redirect( home_url() . '/whichever-page-you-want/' );
exit;
}
}
add_action( 'init', 'my_redirect' );Ref:…[Read more]
-
bp-help replied to the topic Buddypress Wall in the forum How-to & Troubleshooting 10 years ago
@sherry22
Probably the best thing to is ask the plugin author for support on the plugins support forum here: https://wordpress.org/support/plugin/buddypress-wall
@sherry22
Active 2 years, 8 months ago