Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimcoleman/c961a7210549dc18b2a31db73befe5e9 to your computer and use it in GitHub Desktop.
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.
<?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