I need your help. I’m not sure how to hide or delete “No value provided.” on the “Description” Column? I want to be like that the next column of “Last record” shows BLANK.
Hi @koeiyabe!
Sadly we don’t have an option to customize that label yet. You could do it via code in a plugin or child theme:
add_filter( 'tainacan-i18n', function( $i18n ) {
$i18n['label_value_not_provided'] = '';
return $i18n;
} );
Yes, I added the code in Additional CSS of the Tainacan theme, but it does not work. Do you have any options?
Hi @koeiyabe that wouldn’t be in Additional CSS, that is PHP filter.
But I guess this could be too complicated for you to configure if you are not familiar with…
This made me think of another way, it is not 100% bullet proof, but might work for what you need. In this case you can add in the Additional CSS the following:
#items-list-results .has-text-grey.is-italic {
opacity: 0;
}
I’m done, but it still does not work. Do you have any codes?
At least here that css is really not being loaded. Could you share me a screenshot of the Customizer section where you put the css that I just shared?
Ok, I found it, it is missing a “}” before the red section (line 59 or 60), which is causing the style to not be included.
Oh! Thanks! Solved!

