You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a custom post type name Artworks, and a custom taxonomy named Artists.
I have successfully plugged the ajax search term field and everything is working great at this point.
However, I see that when choosing an artist via the ajax field, it is not registering to the Artists taxonomy - i.e, when I go to the taxonomy term, I see that the artwork is not attached to the artists.
``
$artwork_details->add_field( array(
'name' => __( 'Artist', '' ),
'desc' => 'Start typing a name (You must add the Artist in the Artist section FIRST.)',
'id' => 'auction_taxonomy_select',
'type' => 'term_ajax_search',
'multiple' => false,
'limit' => -1,
'query_args' => array(
'taxonomy' => 'artists_tax',
'hide_empty' => false
)
) );
``
On the Artwork page, I also see a sidebar taxonomy menu that allows to have multiple choices, is there a way to disable this?
Thanks a lot for this!
The text was updated successfully, but these errors were encountered:
Hello! I have an issues and not sure if it's me:
I have a custom post type name Artworks, and a custom taxonomy named Artists.
I have successfully plugged the ajax search term field and everything is working great at this point.
However, I see that when choosing an artist via the ajax field, it is not registering to the Artists taxonomy - i.e, when I go to the taxonomy term, I see that the artwork is not attached to the artists.
``
``
On the Artwork page, I also see a sidebar taxonomy menu that allows to have multiple choices, is there a way to disable this?
Thanks a lot for this!
The text was updated successfully, but these errors were encountered: