• Hi,

    Does this plugin support custom taxonomies?

    I can’t see the existing product taxonomies being displayed when I create a filter.

    Below you’ll find the code that I’m using to create the custom taxonomy.

    Thanks!

    // Register Custom Taxonomy
    function sample_custom_taxonomy_item() {
    $labels = array(
    'name' => 'Brands 2',
    'singular_name' => 'Brand',
    'menu_name' => 'Brands',
    'all_items' => 'All Brands',
    'parent_item' => 'Parent Brand',
    'parent_item_colon' => 'Parent Brand:',
    'new_item_name' => 'New Brand Name',
    'add_new_item' => 'Add New Brand',
    'edit_item' => 'Edit Brand',
    'update_item' => 'Update Brand',
    'separate_items_with_commas' => 'Separate Brand with commas',
    'search_items' => 'Search Brands',
    'add_or_remove_items' => 'Add or remove Brands',
    'choose_from_most_used' => 'Choose from the most used Brands',
    );
    $args = array(
    'labels' => $labels,
    'hierarchical' => true,
    'public' => true,
    'show_ui' => true,
    'show_admin_column' => true,
    'show_in_nav_menus' => true,
    'show_tagcloud' => true,
    );
    register_taxonomy( 'item-brand', 'product', $args );
    }
    add_action( 'init', 'sample_custom_taxonomy_item',99);
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Giuseppe Madaudo

    (@askmagic)

    Hi there,

    I’m sorry but this version of the plugin doesn’t support custom taxonomies.

    Thread Starter Pirenko

    (@pirenko)

    Hi Giuseppe,

    Thanks for your reply!

    When you say “this version” do you mean the free version? I mean, does the premium version support that feature?

    Thanks,
    Pirenko

    Plugin Author YITHEMES

    (@yithemes)

    Hello,

    I hope you’re doing well :D.

    Yes, my colleague Giuseppe refers that this version on wp.org doesn’t support custom taxonomies.
    If you need more information for premium features, I suggest you to contact us on our site.

    Have a good day.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Custom taxonomy’ is closed to new replies.