Remove location tracking module from Results page

Hi!

I would like to get rid of the module at the bottom of the Answers results page that displays a user’s current location based on internet address (screenshot attached). Does anyone know if this is possible/ how to go about it?

Thanks!

Hey @Sherman_Tabor!

Here’s one way I was able to do that: if you use inspect to find that container, you can add display: none to the answers.scss to remove it. It should look something like this:

.yxt-LocationBias. {
display: none;
}

Hope that works for you!

2 Likes

Amazing thanks so much @Hannah_Mussi ! It worked!