If you are using our new dashboards (released in beta late 2020), these settings are managed by Themes that are accessed in the admin panel under the Platform section.
@bwellsbury-1634 depending on which platform level (standard,advanced,elite) you have, it may be included. The best way to find out is to get in touch with your account manager who can see the specifics of your contract.
I’m using this feature with an embedded dashboard. My auth function has no trouble getting the signed URL from Looker, but when I actually try to view the dashboard the iframe fails to load with
Refused to display 'https://orderlyhealth.cloud.looker.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'.
Does anyone have any idea what’s happening here? The exact same dashboard works just fine if I don’t add a hide_filter param. I kind of wonder if I’m just putting it in the wrong order, since I know Looker is a bit touchy about ordering. But the documentation for the embed doesn’t specify where hide_filter should appear in the order, even though it does for every other param
There are two URLs in play when you are embedding - the URL of the target content/dashboard, and the URL that does the authentication (which itself contains the former URL as an encoded variable). The problem you are running into is that you’re applying a query parameter that is intended for the former URL to the latter URL.
You should instead first determine your “Embed Content URL” with this new parameter. It will look something like /embed/dashboards/123?hide_filter=ABC
This will then be encoded and used as part of the path in your signed SSO Embed URL. Since it has been encoded, it will not be considered a separate parameter in this new URL