Skip to main content

Hello!

In the interface, I have a kanban section with some cards where 4 fields shows, aside from the name of the cards. Now my problem is that those fields also show their title.

So at the moment it look like this:

Garry’s Pub
Type
CAD
Address
157 Rue de Villé
City
Montréal

But I want it to look like this:

Garry’s Pub
CAD
157 Rue de Villé
Montréal

And I cannot find the option to hide the field titles anywhere.

Anybody with better luck than me here?
 

Yeah I don’t think we can do that at this time.  You could try using a Tampermonkey script to help with that?

Here’s the original:

And here’s with the script:

 

The problem with the script is you’ll need to install it on each browser you’re using though and I’m not sure how feasible that is in your context

Here’s the script I threw together, let me know if you hit any weirdness and I’ll see what I can do!  You’ll need to change the ‘match’ value to your Interface’s URL (i.e. this bit: @match https://airtable.com/appREP113IoWVJoxC/pagPKD3eOzRxrwGnV)

// ==UserScript==
// @name Hide Kanban Labels
// @description Hide Kanban Labels
// @namespace adam@thetimesaving.company
// @version 1
// @match https://airtable.com/appREP113IoWVJoxC/pagPKD3eOzRxrwGnV
// @grant GM_addStyle
// ==/UserScript==

(function() {
'use strict';
GM_addStyle(`
.mt-half.quiet.small.truncate {
display: none !important;
}
`);
})();

 


Very appreciated! But as suspected, not feasible in my context as we’re a wide team.


Hey ​@Ric-Mich,

As mentioned by Adam above, unfortunately that is not possible. Having said that, I would highly encourage you to fill out this Product Idea/Feature Request form to make sure Airtable reads this.

Mike, Consultant @ Automatic Nation 
YouTube Channel


Reply