# Sage 9, Blade and Buddypress

**URL:** https://discourse.roots.io/t/sage-9-blade-and-buddypress/9604
**Category:** sage
**Tags:** webpack, sage9, blade
**Created:** 2017-05-15T18:24:37Z
**Posts:** 18
**Showing post:** 8 of 18

## Post 8 by @Log1x — 2017-12-27T04:47:56Z

A little less frightening of a solution:

```
add_filter('bp_template_include_theme_compat', function() {
    echo template('page');
    return '';
});
```

I personally use `singular`, but `page` should work out of the box for Sage. Unless you are using `add_theme_support('buddypress')`– BuddyPress just tries to override `the_content()` in anyway it can, so a generic page view should work as intended.

---

_[View the full topic](https://discourse.roots.io/t/sage-9-blade-and-buddypress/9604)._
