Created
February 12, 2018 11:17
-
-
Save kimcoleman/c961a7210549dc18b2a31db73befe5e9 to your computer and use it in GitHub Desktop.
Removes the replies filter in the bbPress Add On for Paid Memberships Pro.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Removes the replies filter in the bbPress Add On for Paid Memberships Pro. | |
function remove_my_pmprobb_auth_reply_view_filter() | |
{ | |
remove_filter( 'bbp_get_reply_content', 'pmprobb_auth_reply_view'); | |
} | |
add_action('init', 'remove_my_pmprobb_auth_reply_view_filter'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment