this one helps. This was a silly selector mistake on my behalf. The Tag It ACF plugin applies the tagit jquery to an input and not a ul. In my case I was able to access the element and call tagit functionality like this:
I wish this help you You can't create columns with the same name in the same table. In different table you can use alias:
SELECT table.status AS status1,
table2.status AS status2,
table3.status AS status3
FROM table
JOIN table2 ON table.status = table2.status
JOIN table3 ON table.status = table3.status
WHERE table.status = 99
select2 jquery: On createTag, specify the value of the new tag
I hope this helps . Is there a way to customize the value of a new tag? For example I want to create something like this: , According with the documentation, the way to do it is this one:
like below fixes the issue The field MerchantName used for faceting. This field should be defined in schema.xml as a string (type="string") in order for the facet to use the whole text. As you are using a text based field with field type as text_general, the value will be split into multiple tokens. The same is the case with MerchantName field.