Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 24,042
- How-to & Troubleshooting
- 129,698
- Creating & Extending
- 25,794
- Requests & Feedback
- 9,498
- Third Party Plugins
- 9,793
- Showcase
- 3,316
- Ideas
- 1,375
- Miscellaneous
- 9,180
-
Well these are common WP type functions – have a look at the codex.
https://codex.wordpress.org/Function_Reference/add_filter
If you’re building a site – might as well try changing it the correct way instead of informing others to hack the bp-core. (as that will just lead to bigger problems down the road for those who may not understand the changes made). BuddyPress is littered with hooks
something like:
function my_blank_activity_permalink( $content ) {
return ”;
}
add_filter(‘bp_activity_permalink’, ‘my_blank_activity_permalink’, 1, 1 );