• For some reason if this is picking up all my buddyboss bp_member_type anyway to exclude that in future releases? otherwise it clears all the bp_member_type from every user on the site and I have to go back and reset them after using this plugin.

Viewing 1 replies (of 1 total)
  • Plugin Author Lester Chan

    (@gamerz)

    You can do this in your theme or functions.php

    
    add_filter( 'wp_sweep_excluded_taxonomies', 'get_excluded_taxonomies' );
    function get_excluded_taxonomies( $excluded_taxonomies ) {
        return array_merge( $excluded_taxonomies, [ 'bp_member_type' ] );
    }
    
Viewing 1 replies (of 1 total)

The topic ‘Orphaned Term Relationship’ is closed to new replies.