Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Neil,

    Unfortunately we can’t offer a great deal of support when it comes to third party plugins. Have you touched base with the author of that plugin?

    Thread Starter neilfoster

    (@neilfoster)

    Sorry, I did figure this out. I was not using your correct function call in their plugin.

    I posted this here AND there just in case anyone had any ideas here. Thanks again for responding. I’ll mark resolved.

    It was as such in case anyone else here ever needs to know.:

    /***************show event categories on subscribe2 page*****************************/

    function my_taxonomy_types($taxonomies) {
    // where 'my_taxonomy_type' is the name of your custom taxonomy
    $taxonomies[] = 'tribe_events_cat';
    return $taxonomies;
    }
    add_filter('s2_taxonomies', 'my_taxonomy_types');
    
    function my_post_types($types) {
        $types[] = 'tribe_events';
        return $types;
    }
    add_filter('s2_post_types', 'my_post_types');
    Thread Starter neilfoster

    (@neilfoster)

    Thanks!

    Glad you figured it out!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Custom taxonomies in Subscribed Categories list’ is closed to new replies.