BP should be adding its Sitewide Activity Feed last in the HTML source.
You can verify this by checking the HTML source and looking at the <head> tag. Search for “feed” and BP’s feed should be listed last after the main site’s post feed and comment feed.
Let us know if this isn’t the case.
After checking I found:
<link rel=”alternate” type=”application/rss+xml” title=”MobilMe Marketing Community | Site Wide Activity RSS Feed” href=”https://mobilmemarketing.com/activity/feed/”>
is coming before…
<link rel=”alternate” type=”application/rss+xml” title=”MobilMe Marketing Community » Feed” href=”https://mobilmemarketing.com/feed/”>
How shall I correct this?
It’s probably something to do with your OneCommunity Themeforest theme.
I’m guessing that the theme author put bp_head() before wp_head(). Pass that tidbit to the theme author or adjust it yourself by moving bp_head() below wp_head() in header.php.
If you switch to another theme like Twenty Twelve or Twenty Thirteen, you should see that the Sitewide Activity feed is placed last.
So I am very new at coding, html, and the like. I am not sure if I am doing this correctly. Here is my header.php code:
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta http-equiv=”Content-Type” content=”<?php bloginfo( ‘html_type’ ) ?>; charset=<?php bloginfo( ‘charset’ ) ?>” />
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″ />
<title><?php wp_title( ‘|’, true, ‘right’ ); bloginfo( ‘name’ ); ?></title>
<link rel=”shortcut icon” href=”<?php echo of_get_option(‘favicon_path’, ‘http://www.demo1.diaboliquedesign.com/4/favicon.gif’ ); ?>” />
<?php do_action( ‘bp_head’ ) ?>
<link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ) ?>” />
<link rel=”stylesheet” type=”text/css” href=”<?php bloginfo( ‘stylesheet_url’ ); ?>” />
<?php
if ( is_singular() && bp_is_blog_page() && get_option( ‘thread_comments’ ) )
wp_enqueue_script( ‘comment-reply’ );
wp_head();
?>
I tried moving wp_head(); to different places above <?php do_action( ‘bp_head’ ) ?> and it’s not working.
I test the results by putting in my domain name at Feed Validator (http://validator.w3.org/) and it keeps returning the activity feed as my main feed.
I will get in touch with the theme developer as you suggested, or if you know what I am doing wrong here could you let me know.
Thanks for your help on this one.
Update: I seem to have found a good spot to put <?php do_action( ‘bp_head’ ) ?> where it will not be confused for the main feed on my site.
You can mark as solved. Thanks again.