• Resolved ryandesigned

    (@ryandesigned)


    One of my custom taxonomies, “brand’ is being hidden from Vendors only on the add product page, and I don’t why. I believe this may have happened with the newest update.

    Under “Capability” it show that the section is off, and when I try to turn it on, it doesn’t save, and will still ve off again once I refresh the page.. that is the only section that behaves that way. All other settings seem to be saving correctly.

    Section that wont turn on:

    View post on imgur.com

    Thanks for your help!!

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter ryandesigned

    (@ryandesigned)

    My custom “Brand” section still works as normal on the admin side, when adding a product.

    View post on imgur.com

    Plugin Author WC Lovers

    (@wclovers)

    How you have created this custom Brand taxonomy? Is this from theme or some other third party plugin?

    Thread Starter ryandesigned

    (@ryandesigned)

    I have added this code to the functions.php of my child theme..

    add_action( ‘init’, ‘custom_taxonomy_Brand’ );
    function custom_taxonomy_Brand() {
    $labels = array(
    ‘name’ => ‘Brand’,
    ‘singular_name’ => ‘Brand’,
    ‘menu_name’ => ‘Brand’,
    ‘all_items’ => ‘All Brands’,
    ‘parent_item’ => ‘Parent Brands’,
    ‘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 Brands 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( ‘brand’, ‘product’, $args );
    register_taxonomy_for_object_type( ‘brand’, ‘product’ );
    }

    I have also added other custom taxonomies using the same code, and those continue to work fine. It’s the “brand” taxonomy only that disappeared and wont turn back on. Also, the brand taxonomy continues to work as expected on my un-updated development site.

    Thanks

    Thread Starter ryandesigned

    (@ryandesigned)

    The brand taxonomy worked as expected for months, and my vendors were using it when adding products. It just turned itself off with the latest update, I believe.

    Plugin Author WC Lovers

    (@wclovers)

    Are you using WCFM Ultimate?

    If so, please check capability setting. Brands is ON.

    Thread Starter ryandesigned

    (@ryandesigned)

    Yes, I have already explained that under capability, it shows it as OFF. When I turn it on, it will not save the changes. With page refresh, it turns itself back off. This is the only taxonomy that behaves this way…

    Thread Starter ryandesigned

    (@ryandesigned)

    Any help on this? Still unable to save/turn on this setting under capability!

    Plugin Author WC Lovers

    (@wclovers)

    You are our premium customer, using WCFM Ultimate.

    So, please contact us directly at [email protected]

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Section vanished from vendor end of add product page and will not turn back on!’ is closed to new replies.