Plot twist @Vedran_Serbu, it is NOT A BUG.
The current behavior is the expected, I was just misinterpreting the feature. As you can see you can select multiple collections there, so the idea isn’t that links should go to the Collection items list, but to remain going to the Term items list, this time filtered only by a set of collections.
What you are requiring really concerns to adding more customization to Term Items list options, something that, as mentioned in the issue 355, we still don’t have a proper place for. Ideally, I would offer this as another option in the theme settings, but this is something we are not able to focus right now.
To help you deliver what you need, I can give you a path that will require code, but at least uses existing developer solutions. You’ll have to, either in a plugin or child theme, add this chunk of code:
add_filter(
'tainacan-enabled-view-modes-for-themes',
function( $enabled_view_modes ) {
$enabled_view_modes = array_diff( $enabled_view_modes, [ 'cards', 'table', 'map' ] );
return $enabled_view_modes;
},
10, 1);
As you can see, this uses one of our filters that completely disables from the theme-side the ‘cards’, ‘table’ and ‘map’ view modes.
Regarding the title… The way to go now is to hide it via CSS:
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-title p,
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-title p {
display: none;
visibility: hidden;
}