Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'rss'

Viewing 25 results - 1 through 25 (of 827 total)
  • Author
    Search Results
  • locker17
    Participant

    When I click on the Rss feed button of any activity page i get the following error in a red box:

    This page contains the following errors:
    error on line 12 at column 71: Unescaped ‘<‘ not allowed in attributes values

    Bug? How can I solve this? Which file throws this error?

    #335843
    luckybug0404
    Participant

    My Buddypress group only works on computers, it doesn’t work on mobile. Anytime I try to view my activity page or members page, I get this message:Post Update All Members 0 Mentions 0 RSS Feed Search Activity… Search Show: — Everything — New Members Profile Updates Updates Friendships New Groups Group Memberships Group Updates Posts Comments Loading the community updates. Please wait. Read more
    But it works perfectly fine on my computer, what do I do?
    Wordpress version- 6.7.1
    Buddypress version- 14.3.3

    #335550
    kaihanga2
    Participant

    Hi

    I’m using BBPress with BuddyPress in a WordPress site with MicroOffice theme. We’ve notice recently that the BuddyPress Activity Feed is no longer updating when someone Favourites a Forum post inf BBPress. I’ve tried turning off all other plugins to no avail. I’ve also delted and reinstalled buddypress.

    Also I’ve notice the BuddyPress RSS feed is not working, and when I go into the activity feed domain.com/activity (for example) it will say 9 favourites but when you click o it you only see two listed. Its also not increasing from 9 when I click on forum items favourite button.

    Does anyone have any ideas please?

    jrsuser
    Participant

    Hello Community –
    Using Buddypress v.14.1.0 WordPress v. 6.6.2 with Multisite using Twenty Twenty Four theme and BP Nouveau:
    Does anyone have a code snippet to address the following:
    the search form box does not appear in Member Activity to the right of the RSS feed icon even though the search filter drop down appears.
    Have tried multiple ways to 1. get search form to appear – but cannot get it to work.
    If this has been addressed before in a topic, please reply with link.
    Thanks!

    #334821

    In reply to: disable rss

    Mike Witt
    Participant

    Hey @venutius, good to know. I appreciate you keeping this thread alive.

    You know, I’ve been thinking seriously about simply redirecting (or rewriting) anything that ends in /rss or /feed to the “not found” page, so as to solve the problem once and for all (and not just for BP and BBP). I *thought* this would be easy either using .htaccess or installing my own rewrite rules in WP. But I haven’t been able to make either approach work yet! (Ignorance on my part, I’m sure.)

    But I guess that’s way beyond the scope of this forum.

    #334762
    Venutius
    Moderator

    This is something I’m working on in the plugin I’m building as a result of this thread: https://buddypress.org/support/topic/disable-rss/

    I already have the code to remove stuff from wp search in another plugin I have, I just need to put that into this new plugin and update it specifically for this task.

    I should have some code in the next week.

    #334761

    In reply to: disable rss

    Venutius
    Moderator

    Currently, I’ve got part of the solution, I can redirect all the bbPress feed links to a 404 or back to the originating page. However, I want to remove those links, and ideally stop the rss functions from being triggered. I did find some clues for that on friday when I last worked on it, and should be back working on it on Monday.

    #334733

    In reply to: disable rss

    Venutius
    Moderator

    Yep could you create a new thread for this? It just means we keep to the same topic and it won’t confuse future viewers.

    I’ve decided to write a new bp privacy plugin which makes all bbp, wp, and bp pages private, disables xml rpc and also rest, removes the rss links and aims to deal with all privacy issues in one plugin, with settings to give flexibility.

    #334731

    In reply to: disable rss

    Thanks Venutius, I spent some time using your code along with ChatGPT and this seems to have worked for me, all the feeds are gone….maybe this will help someone else!

    function disable_all_rss_feeds() {
        // Disable all WordPress feeds
        function disable_all_feeds() {
            wp_die(__('No feed available, please visit the <a href="'. get_bloginfo('url') .'">homepage</a>!'));
        }
    
        add_action('do_feed', 'disable_all_feeds', 1);
        add_action('do_feed_rdf', 'disable_all_feeds', 1);
        add_action('do_feed_rss', 'disable_all_feeds', 1);
        add_action('do_feed_rss2', 'disable_all_feeds', 1);
        add_action('do_feed_atom', 'disable_all_feeds', 1);
        add_action('do_feed_rss2_comments', 'disable_all_feeds', 1);
        add_action('do_feed_atom_comments', 'disable_all_feeds', 1);
    
        // Remove RSS feed links from the header
        remove_action('wp_head', 'feed_links', 2);
        remove_action('wp_head', 'feed_links_extra', 3);
    
        // Disable BuddyPress feeds
        remove_action('bp_activity_feed', 'bp_activity_action_sitewide_feed');
        remove_action('bp_activity_sitewide_feed', 'bp_activity_action_sitewide_feed');
        remove_action('bp_member_activity_feed', 'bp_activity_action_sitewide_feed');
        remove_action('bp_group_activity_feed', 'bp_activity_action_sitewide_feed');
        remove_action('bp_member_feed', 'bp_dtheme_activity_feed');
        remove_action('bp_group_feed', 'bp_dtheme_group_activity_feed');
    
        // BuddyPress Nouveau template pack feed removals
        remove_action('bp_nouveau_group_header_meta', 'bp_nouveau_group_meta', 50);
        remove_action('bp_nouveau_group_header_meta', 'bp_nouveau_group_meta', 50);
        remove_action('bp_nouveau_action_activity_content', 'bp_nouveau_activity_feed', 5);
    
        // Disable BuddyPress members feeds
        remove_action('bp_members_directory_members_feed', 'bp_members_feed');
    
        // Disable BuddyPress groups feeds
        remove_action('bp_groups_directory_groups_feed', 'bp_groups_feed');
        remove_action('bp_group_activity_feed', 'bp_group_activity_custom_feed');
    
        // Disable BuddyPress blogs feeds
        remove_action('bp_blogs_directory_blogs_feed', 'bp_blogs_feed');
        remove_action('bp_blog_comments_feed', 'bp_blog_comments_custom_feed');
    
        // Disable BuddyPress forums feeds
        remove_action('bp_forums_directory_topics_feed', 'bp_forums_feed');
        remove_action('bp_forums_topic_feed', 'bp_forum_topic_custom_feed');
    }
    add_action('bp_init', 'disable_all_rss_feeds', 1);
    
    // Disable BuddyPress Nouveau feeds
    function disable_buddypress_nouveau_feeds() {
        remove_action('bp_nouveau_activity_feed', 'bp_nouveau_activity_feed');
        remove_action('bp_nouveau_group_feed', 'bp_nouveau_group_feed');
    }
    add_action('bp_init', 'disable_buddypress_nouveau_feeds', 1);
    
    // Disable pingbacks and trackbacks for privacy
    add_filter('xmlrpc_methods', function($methods) {
        unset($methods['pingback.ping']);
        return $methods;
    });
    
    add_filter('wp_headers', function($headers) {
        unset($headers['X-Pingback']);
        return $headers;
    });
    
    add_filter('pings_open', '__return_false', 10, 2);
    
    // Remove RSS feed div by ID and class using jQuery
    function remove_rss_feed_div() {
        if (is_buddypress()) {
            ?>
            <script type="text/javascript">
            jQuery(document).ready(function($) {
                $('#activity-rss-feed.feed').remove();
            });
            </script>
            <?php
        }
    }
    add_action('wp_footer', 'remove_rss_feed_div');
    
    add_filter( 'bp_rest_api_is_available', '__return_false' );
    #334328

    In reply to: RSS bug

    thinlizzie
    Participant

    Same issue cropped up for me three years ago …
    I chose to simply hide the RSS feed button…

    Add CSS to Customiser …

    
    .feed { display: none !important; }
    
    #334327
    academiciens
    Participant

    Hello,

    My installation is under buddypress 12.5.1 I have the BuddyX free theme, when I go to the activity part and click on RSS feeds I have a bug. How to remove the button so that my users are not this bug or how to solve this bug?

    screen

    #332871
    investbuddy123
    Participant

    Hi, I got some error about the BP Classic. Before the bp’s updates, my activity page is working without activate BP Classis plugin. For now, I need to activate the BP classic plugin to work my activity page. However, I cannot customize my site now when I activate my BP Classic plugin.

    May I know how to solve the problem?

    This is how my activity page without activate BP Classic looks like: https://ctrlv.link/rSS8

    Activity URL: https://myinvestbuddies.com/feeds/

    testovac
    Participant

    PLS HELP I need some plugin for automatic import RSS FEEDs to buddypress activity posts, daily
    Have you tested which plugin can do this?

    #331073
    TMDC City
    Participant

    When I look at my friends/members list I can’t see the name as the profile pic is to big or the text is under the profile pic to read it.

    Image

    #326295
    Ketil Ervik
    Participant

    No perfmatters here!

    Have same problem https://buddypress.org/support/topic/a-critical-error-has-occurred-on-this-site/

    But sims to be a bug! i dont now. I hade never this problem vid buddypress vid wp before. RSS? no its not solution for this problem and i have deaktivate all other plugins, but dont changes enything! same trouble. Så i waiting for some solution here!

    #326261
    deepvyas
    Participant

    Is there a way to delete/block/disable all the RSS feeds?

    Did you read here how to do it – https://perfmatters.io/docs/disable-rss-feeds-wordpress/

    #326191
    eltechafrica
    Participant

    @deepvyas Hi,

    So I’m a total newb at this and I don’t understand how to disable the RSS on BP

    I am trying to make a fully private buddypress installation.

    One issue I am running into is the RSS feeds are public, especially the site wide activity RSS.

    There is a wordpress plugin called disable RSS, but this does not disable the buddypress specific RSS feeds.

    Is there a way to delete/block/disable all the RSS feeds?

    Can you offer any help, or some more detailed instructions (in layman’s terms) so that I can make my RSS feed for all site activity go away? I want to have a completely private BP community

    I have wp 6.0 , bp 10.4

    #326187

    Topic: disable rss

    in group forum Installing BuddyPress
    eltechafrica
    Participant

    Hi,

    So I’m a total newb at this and I don’t understand how to disable the RSS on BP

    I am trying to make a fully private buddypress installation.

    One issue I am running into is the RSS feeds are public, especially the site wide activity RSS.

    There is a wordpress plugin called disable RSS, but this does not disable the buddypress specific RSS feeds.

    Is there a way to delete/block/disable all the RSS feeds?

    Can you offer any help, or some more detailed instructions (in layman’s terms) so that I can make my RSS feed for all site activity go away? I want to have a completely private BP community

    I have wp 6.0 , bp 10.4

    #324562

    In reply to: BP Activity Fields

    lkhlc
    Participant

    Thanks for the response!
    That is a collection of different attempts seeking more than the few fields offered as it is parsing a standard wordpress rss feed
    $link = $entry->link; and $title = $entry->title;
    are the only two giving up any data.

    <item>
    <guid isPermaLink="false">[num]</guid>
    <title>Truncted body</title>
    <link>[domain_name]/my-stream/p/86/</link>
    <pubDate>Thu, 05 May 2022 18:33:15 +0000</pubDate>
    <content:encoded>
    <![CDATA[ <p>Good Post</p> ]]>
    </content:encoded>
    </item>

    If acquiring the ID of the original is possible the rest can easily follow but so far finding that elusive ID has been a tiny bit frustrating 😉 Would just love to find out how to change the link to a permalink as well.

    Thank you again.

    #321139
    Naomi
    Participant

    I’m running WordPress 5.8.1 running Astra theme.
    Buddypress 9.11

    This is an odd question, but I did something that I now can’t figure out for the life of me on my http://www.charlottemasoneducation.org website to require admin approval for registration. In other words, when someone tries to register, I have to approve them before they can engage with the site. I looked through all my plugins listed below and one of them is giving this functionality, but I can’t figure out which one and how. I want to replicate it on another site I’m working on but I’m not able to figure it out. Any help would be appreciated.

    I thought maybe BP Simple Private, but that only makes the site private, it doesn’t provide the approval process functionality.

    Akismet Anti-Spam
    bbp style pack
    bbPress
    Better Notifications for WP
    BP Simple Private
    BuddyPress
    Code Snippets
    Easy Digital Downloads
    Elementor
    Essential Addons for Elementor
    Events Manager
    Events Manager – OpenStreetMaps
    InfiniteWP – Client
    MC4WP: Mailchimp for WordPress
    Ultimate Addons for Gutenberg
    UpdraftPlus – Backup/Restore
    WooBuddy -> WooCommerce BuddyPress Integration
    WooCommerce
    Wordfence Security
    WP Mail SMTP
    WP RSS Aggregator
    WP-Optimize – Clean, Compress, Cache
    Yoast SEO

    #321004
    Tom
    Participant

    Hi @wackao I already have a captcha on my register page, which is why its confusing why I have so many bots, I just deleted 1000 groups!
    This is my register page

    register

    Im wondering if there is another way these bots are signing up, like an API or somehow the default wordperss signup.php? I am not sure

    #319927
    mthoma
    Participant

    Hi, how can I add a list of members actitvity post to my groups activity.
    Group 1 wants to add member 1, 2 & 3 activity post to it’s the group feed.
    Group 2 wants to add members 4, 5 & 6 activity post to its group’s feed.
    I was think of exporting to socials or as rss then reimporting them somehow or through bbpress. still trying to figure it out. Any thoughts, ideas hacks would be apreciated.

    Possible using member profile

    Kind regards mpt

    #319810

    In reply to: RSS Icon & login

    awto
    Participant

    The loginpress only that the user to the wordpress profile admin page, and not to buddyprerss main page

    #319809

    In reply to: RSS Icon & login

    awto
    Participant

    Hi and thanks for your reply
    Well there is no logout, and it is the RSS Feed and search activity I want to remove.

    #319806

    In reply to: RSS Icon & login

    Varun Dubey
    Participant

    You can use https://wordpress.org/plugins/loginpress/ to style the default wp-login page or If you are planning to use any custom login page using any page builder you can use create it and map newly created page to login button in header via theme customiser setting for page mapping.
    to disable rss feed
    https://pastebin.com/zaiGH4Dr

Viewing 25 results - 1 through 25 (of 827 total)
Skip to toolbar