How to hide or disable "Get Directions" button in the Location Directory?

fabio_milani
Tera Contributor

Hi All,

 

Do you know how to hide or disable the "Get Directions" button in the Location Directory? I didn't find any configuration for that. Do you think that change be done via UI Widget? If yes, do we need to run another process to make the change available in the Location Directory portal?

The "Get Directions" button appears in two places in the Location Directory:

1) In the header section

2) When you select / click on a Space name in the cad drawing, it opens a card "horizontal-card__container b r-2x" with the "Get Directions" button.

 

Thank you.

 

1 REPLY 1

Raj_Esh
Kilo Sage
Kilo Sage

Hi @fabio_milani 

 

Have you tried UI Builder to hide such option?

 

One more option, if you want to just play around with CSS(This is something i do most of the time if i want to hide on portal stuff)

 

button[aria-label="Get Directions"],
  display: none !important;
}

 

Hope this helps

--Raj