Addition of labels view for taxonomy field?

Support General Addition of labels view for taxonomy field?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15701
    interstellarinterstellar
    Participant

    Hi guys,

    Would it be possible to add the view below as a taxonomy field display option?

    https://imgur.com/a/Tn2fHnu

    Cheers!

    #15712
    Anh TranAnh Tran
    Keymaster

    Hi,

    Yes, it's possible.

    You can use the taxonomy_advanced field, and set the field_type to select_advanced (default) and enable multiple to true, like this:

    'fields' => [
        [
            'id' => 'purchased_tags',
            'type' => 'taxonomy_advanced',
            'taxonomy' => 'your_tax',
            'name' => 'Apply tags when purchased',
            'field_type' => 'select_advanced',
            'multiple' => true,
        ],
        // Other fields
    ]
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.