• A private taxonomy called “prominent words” is being created by Yoast Premium. It’s being pulled in as a taxonomy filter, but that’s not the desired behavior, and that taxonomy doesn’t appear as an option to exclude.

    Video showing what I’m seeing:

    Happy to help troubleshoot in whatever way you’d like! The ideal solution here would be that this private taxonomy either doesn’t show up on the frontend as a filter (since it’s private, it really shouldn’t), or alternately, that taxonomy should be excludable from the backend in the Beautiful Taxonomy Filters options.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Jon, I see a similar issue on my site. Did you get a solution other than disabling Yoast SEO?

    Thread Starter Jon Schroeder

    (@jonschr)

    Here’s the code I used to fix it (added in my functions file), as there’s a way to exclude categories provided by BTF:

    
    // Add 'yst_prominent_words' to the array of excluded taxonomies
    function modify_categories_dropdown( $taxonomies ) {
    	$taxonomies[] = 'yst_prominent_words';
        return $taxonomies;
    }
    add_filter( 'beautiful_filters_taxonomies', 'modify_categories_dropdown', 10, 1 );
    
    Thread Starter Jon Schroeder

    (@jonschr)

    @cweickert Did that resolve it for you?

    Yes it did. Thnak you!

    Thread Starter Jon Schroeder

    (@jonschr)

    Glad to hear it! Best of luck with everything.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Unwanted filter being added for private taxonomy’ is closed to new replies.