Show project tags as default

Hi there,
Does anyone know if there is a way to have tags showing by default? I’ve had a search and can’t find any way to do this. I wondered if you could just add a bit of CSS code or similar but can’t find mention of it.
Thanks!

Hi @Tori

I just want to double check - are you referring to project tags?

Yes project tags :). Thanks Matthew!

Thanks for confirming!

There is a way of doing this with a bit of JavaScript, but you would need a Power User Subscription to enable it.

If you go to Account Settings >> Design Customisation >> Advanced CSS & HTML Customisation, this will load up some styling tools.

On the left hand side you have the different types of things you can edit. Scroll to the bottom to find Custom Scripts
image

And then paste the below into the right hand area, save and enable it.

$(document).ready(function() {
     $('.page-purchases-index .btnshowTags, .page-sales-index .btnshowTags').trigger('click');
});

What this does, is on the sales and purchase management screens, it will act as if you’re clicking the “Show Tags” button, and will load them in place for you.

Hope that helps :slight_smile:

Amazing, thank you so much!

1 Like

This topic was automatically closed after 7 days. New replies are no longer allowed.