Wbcom Designs – BuddyPress Post from Anywhere
BuddyPress Post from Anywhere puts the BuddyPress activity composer on any page of your site, not just the activity directory and member profiles. Drop the “Post From Anywhere” block into a page in the block editor, or use the [bppfa_postform] shortcode, and logged-in members can share an update right where they already are. The plugin renders the native BuddyPress “what’s new” form, and BuddyPress itself handles the posting, so updates land in the activity stream exactly as they would anywhere else. It requires BuddyPress or BuddyBoss Platform with the Activity component enabled. What you get Two ways to place the form * The “Post From Anywhere” block for the block editor, site editor, and template parts, with wide and full alignment plus margin and padding controls. * The [bppfa_postform] shortcode for classic editor pages, posts, widgets, and theme templates. * Both surfaces run through the same renderer, so the block and the shortcode produce identical output. The native BuddyPress composer * The real BuddyPress “what’s new” form: avatar, status field, and Share Update button. * A “post in” selector that lets members choose their own profile or one of their groups, listing up to 100 of the groups they belong to. * New activity renders inline after posting across bp-legacy, bp-nouveau, and BuddyBoss. * rtMedia and MediaPress uploaders initialize on block, shortcode, and widget placements. Clear feedback in every context * Four contextual notices instead of an empty space: logged out, BuddyPress or BuddyBoss inactive, the Activity component turned off, and no permission to post. * Inline feedback messages that announce to screen readers, with the form marked busy while posting. Looks right on your site * Follows your theme’s styling, and works on phones, tablets, and desktops. * Explicit dark mode for BuddyX 5.1+, BuddyX Pro, and Reign 8+, driven by the theme’s own color tokens. * RTL support for Arabic, Hebrew, and other right-to-left languages. Perfect For Online courses – let students share thoughts after a lesson Membership sites – increase community interaction beyond the activity page Blogs – turn readers into active community members Landing pages – make the first page a member sees a place to participate Corporate sites and intranets – team updates and collaboration Premium Support Our dedicated support team is ready to help you get the most out of this plugin. Whether you need help with setup, customization, or troubleshooting, we’re here to assist. Documentation Documentation and Support – Setup walkthrough and usage guides Translations English (default) Ready for translation in your language with included POT file RTL language support included Links Plugin Homepage Documentation Support Request Features Compatibility WordPress 6.5 and higher PHP 8.0 and higher BuddyPress or BuddyBoss Platform, with the Activity component enabled – required Works with the block editor and classic editor Tested with popular themes including BuddyX, Reign and BuddyBoss What’s New in 1.5.8 Version 1.5.8 adds the “Post From Anywhere” block, so you no longer need a shortcode to place the composer. The block renders through the same code as the shortcode, so the two are interchangeable. This release also makes rtMedia and MediaPress uploaders work on shortcode and block placements, and adds explicit dark mode for BuddyX and Reign. More Free Tools from Wbcom Designs Once any page can become a place to post, you will want more places for members to connect, share, and contribute. These other free tools from Wbcom Designs fill in the rest of the community, from the theme and social network itself to forums, media, events, gamification, directories, jobs, and courses. BuddyX – A free, fast community theme for BuddyPress, BuddyBoss and PeepSo with a modern layout and dark mode. BuddyNext – Stand up a complete WordPress community with activity streams, member spaces, profiles, direct messaging, and built-in moderation. Jetonomy – Add forums, question-and-answer boards, and idea spaces that stay tidy through trust-based auto-moderation even past 100,000 topics. Mediaverse – Let members build photo and video albums, react, follow each other, and message privately while AI moderation keeps things clean. Eventonomy – Run community events with RSVPs, calendars, and front-end submissions. WB Gamification – Reward members with points, badges, and leaderboards to keep engagement high. Listora – Publish searchable directories across ten listing types with reviews, maps, and member-submitted entries from the front end. WP Career Board – Add a job board with front-end listings, applications, and employer profiles. Learnomy – Build and sell online courses, auto-grade quizzes, collect payments, and award certificates when learners finish.
Top keywords
- block10×1.36%
- buddypress10×1.36%
- activity9×1.23%
- post7×0.95%
- shortcode7×0.95%
- buddyboss6×0.82%
- community6×0.82%
- editor6×0.82%
- members6×0.82%
- support6×0.82%
- anywhere5×0.68%
- buddyx5×0.68%
Stream – Activity Log & Audit Trail
Stream is a complete activity log and audit trail for your WordPress site: see what changed, who changed it, and when. From plugin activations to post edits, login attempts to new user creation, every user and system action is recorded in an audit log built for debugging, security monitoring, and compliance. Every logged action is displayed in an activity stream and organized for easy filtering by User, Role, Context, Action or IP address. Admins can highlight entries in the activity log—such as suspicious user activity—to investigate what’s happening in real time. Stream also lets you configure email alerts and webhooks for integrations like Slack and IFTTT, so your team knows the moment something goes wrong. Stream keeps its own logs healthy too: records are automatically purged on the retention schedule you choose, with batched deletion and orphaned-data cleanup that stay reliable even on very large sites. Stream is also AI-ready: its abilities are exposed through the WordPress Abilities API and MCP Adapter, so AI assistants and other tools can securely query your site’s activity records. For advanced users, Stream supports a network view of all activity records on your Multisite, exclude rules to ignore certain kinds of user activity, and a WP-CLI command for querying records. Stream is free and fully open source — development happens in the open on GitHub, maintained by XWP. With Stream’s powerful activity logging, you’ll have the information you need to responsibly manage your WordPress sites. Built-In Tracking Integrations For Popular Plugins: Advanced Custom Fields bbPress BuddyPress Easy Digital Downloads Gravity Forms Jetpack Two Factor User Switching WooCommerce Yoast SEO Built-In Tracking For Core Actions: Posts Pages Custom Post Types Users Themes Plugins Tags Categories Custom Taxonomies Settings Custom Backgrounds Custom Headers Menus Media Library Widgets Comments Theme Editor WordPress Core Updates Other Noteworthy Features: Multisite view of all activity records on a network Limit who can view user activity records by user role Set exclude rules to ignore certain kinds of user activity Live updates of user activity records in the Stream Export your Activity Stream as a CSV or JSON file WP-CLI command for querying records Configuration Most of the plugin configuration is available under the “Stream” → “Settings” page in the WordPress dashboard. Request IP Address The plugin expects the $_SERVER['REMOTE_ADDR'] variable to contain the verified IP address of the current request. On hosting environments with PHP processing behind reverse proxies or CDNs the actual client IP is passed to PHP through request HTTP headers such as X-Forwarded-For and True-Client-IP which can’t be trusted without an additional layer of validation. Update your server configuration to set the $_SERVER['REMOTE_ADDR'] variable to the verified client IP address. As a workaround, you can use the wp_stream_client_ip_address filter to adapt the IP address: add_filter( 'wp_stream_client_ip_address', function( $client_ip ) { // Trust the first IP in the X-Forwarded-For header. // ⚠️ Note: This is inherently insecure and can easily be spoofed! if ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { $forwarded_ips = explode( ',' $_SERVER['HTTP_X_FORWARDED_FOR'] ); if ( filter_var( $forwarded_ips[0], FILTER_VALIDATE_IP ) ) { return $forwarded_ips[0]; } } return $client_ip; } ); ⚠️ WARNING: The above is an insecure workaround that you should only use when you fully understand what this implies. Relying on any variable with the HTTP_* prefix is prone to spoofing and cannot be trusted! Known Issues We have temporarily disabled the data removal feature through plugin uninstallation, starting with version 3.9.3. We identified a few edge cases that did not behave as expected and we decided that a temporary removal is preferable at this time for such an impactful and irreversible operation. Our team is actively working on refining this feature to ensure it performs optimally and securely. We plan to reintroduce it in a future update with enhanced safeguards. Contribute There are several ways you can get involved to help make Stream better: Report Bugs: If you find a bug, error or other problem, please report it! You can do this by creating a new topic in the plugin forum. Once a developer can verify the bug by reproducing it, they will create an official bug report in GitHub where the bug will be worked on. Translate into Your Language: Use the official plugin translation tool to translate Stream into your language. Suggest New Features: Have an awesome idea? Please share it! Simply create a new topic in the plugin forum to express your thoughts on why the feature should be included and get a discussion going around your idea. Issue Pull Requests: If you’re a developer, the easiest way to get involved is to help out on issues already reported in GitHub. Be sure to check out the contributing guide for developers. Thank you for wanting to make Stream better for everyone! View contributors here.