Skip to main content
All CollectionsFAQsSettings
How to Remove the Privacy Policy Banner in the Recommender?
How to Remove the Privacy Policy Banner in the Recommender?
Updated over 3 months ago

Please note that removing the privacy link is not something we encourage, especially if your business must comply with GDPR or similar applicable laws. Therefore, there is no default option to do this. However, you can use custom CSS to hide it.

Here's How to Hide the Privacy Policy banner Using Custom CSS

  1. Go to the "Styles and Settings" section.

  2. Look for the "Advanced Tab" option and click on it.

  3. Locate and click on the "Custom CSS" tab.

  4. Once you're there, you will see a code editor or input field. Insert the following code into the code editor or input field:

    .ks-calculator-privacy-link {

    display: none;

    }

  5. Finally, click the Save button in the top right corner.
    ​

To revert the changes:

You can either delete the code or surround the code block with comment tags by adding /* at the beginning and */ at the end. This will prevent the app from executing the commented code block.

Did this answer your question?