Hi,
I have a problem, 'link' => 'none' does not work in this code.
How to disable showing the category name as a link?
[
'name' => 'Categories',
'id' => $prefix . 'cat',
'type' => 'taxonomy',
'taxonomy' => 'team_cats',
'field_type' => 'select',
'attributes' => [
'required' => true,
],
'admin_columns' => [
'position' => 'after ' . $prefix . 'order', //col id
'title' => 'Category',
'before' => '<b>',
'after' => '</b>',
'sort' => true,
'filterable' => true,
'link' => 'none',
]
],