Forum Replies Created
-
should be able to add using wp redirect, add this to functions.php
if( !function_exists('custom_user_login_redirect') ) { function custom_user_login_redirect() { $redirect_to = 'hxxp://mysite.com/recent-news'; return $redirect_to; } add_filter('login_redirect','custom_user_login_redirect',10,3); }
utilize the use of bp action instead, add this to your functions
if ( !function_exists('add_rules_in_register') ) { function add_rules_in_register() { echo "<a href='hxxp://www.websitehere.com' target='_blank'>Rules</a>"; } add_action('bp_after_signup_profile_fields','add_rules_in_register'); }
try filter only page search, add this to child functions
if( !function_exists( 'only_page_search_filter' )): function only_page_search_filter($query) { if ($query->is_search) { $query->set('post_type', 'page'); } return $query; } add_filter('pre_get_posts','only_page_search_filter'); endif;
recon re-save bp pages settings in wp-admin->settings->buddypress
make sure the path is correct for activity.php in child theme.
should be themes/twentyfourteen-child/activity/your-file-to-edit-taken-from-bp-default-theme.php
and addadd_theme_support('buddypress');
to child theme functions.phpthx for the info mercime, will check them out.
the ‘yo’ word were cause by the link title=” tag, try change them in your plugin or template.
go to httpxx://domain.com/wp-admin/options-reading.php and choose latest post instead of static page. see if that fixed the homepage page list issue.first check if the buddypress setting ‘members’ page slug were saved correctly.
you need to make sure the template/theme ‘SmallBiz’ are buddypress compatible.
you can use the ‘template-pack’ plugin if its not bp compatible theme.