Terms of Use, Privacy Policy and Cookie Policy for White Label

By default, White Label doesn't include links to the documents like Terms of use, Privacy policy and cookie policy. You can add links to your documents in the White Label settings using the instruction below.

1. Open White Label Web settings in your Travelpayouts account. 

2. Open the Custom HTML code tab.

3. Find the following code in the <footer> tag:

<div class="tpwl-footer__links">
          <a href="/terms/" target="_blank">Terms of Service</a>
          <a href="/privacy/" target="_blank">Privacy Policy</a>
          <a href="/cookie/" target="_blank">Cookie Policy</a>
        </div>
      </div>

4. Add links to your own policies in the href parameter, replacing the default paths:

  • Replace /terms/ with a link to your Terms of Service page
  • Replace /privacy/ with a link to your Privacy Policy
  • Replace /cookie/ with a link to your Cookie Policy

Example with your URLs:

<a href="https://yourdomain.com/terms" target="_blank">Terms of Service</a>  

<a href="https://yourdomain.com/privacy" target="_blank">Privacy Policy</a>  

<a href="https://yourdomain.com/cookie-policy" target="_blank">Cookie Policy</a>