🚀 Implementing Legal Documents
After we have scanned your website and generated the personalized legal documents with Lawwwing, the next crucial step is to ensure that these documents are correctly implemented on your site. Proper implementation not only ensures compliance with legal regulations but also ensures that your users have easy access to relevant legal information.
Automatic Implementation
By default, when you install the Lawwwing script on your website, the legal documents will be implemented automatically.
We will add a small footer to your website with links to the generated legal documents, allowing your users to easily access this information transparently.
Disabling Automatic Implementation
If you prefer not to use this functionality, you can disable it in the Lawwwing control panel:
- Log in to your Lawwwing account.
- Select the website where you want to disable automatic implementation.
- Navigate to the Customization > Design and Functionality section.
- Disable the "Automatically add legal documents" option in your control panel.
How to Manually Add Legal Documents?
To manually add legal documents, you need access to the source code of your website.
There are two methods to manually add legal documents to your website:
1. Using the Integrated Document Viewer
If you have installed the Lawwwing script, you can make the legal documents open in a popup on the same page. This is achieved by adding HTML
elements with the following classes:
lawwwing-document-open notice
: Link to the legal notice.lawwwing-document-open priv
: Link to the privacy policy and cookies.lawwwing-document-open terms
: Link to the terms and conditions.
For example:
<a href="javascript:void(0);" class="lawwwing-document-open notice">Legal Notice</a>
<a href="javascript:void(0);" class="lawwwing-document-open priv">Privacy Policy and Cookies</a>
<a href="javascript:void(0);" class="lawwwing-document-open terms">Terms and Conditions</a>
But they could also be buttons, text, etc:
<button class="lawwwing-document-open notice">Legal Notice</button>
<span class="lawwwing-document-open priv">Privacy Policy and Cookies</span>
This will allow the documents to open in a popup within the same page, so that users can read them without leaving your website.
This is how the popup with the legal document would look:
2. Adding the links manually
If you prefer, you can also add the links to the legal documents directly on any part of your website or in other media, such as newsletters or emails.
To get the links to the generated legal documents, follow these steps:
- Log in to your Lawwwing account.
- Select the website for which you want to get the links to the legal documents.
- Go to the Documents section.
- Click on the "Copy link" button to copy the link to each document.
Once you have the links, you can add them to your emails, newsletters, or on your website like this:
<a href="https://lawwwing.com/documents/<your-client-id>/legal-notice/en/">Legal Notice</a>
<a href="https://lawwwing.com/documents/<your-client-id>/privacy-policy/en/">Privacy Policy and Cookies</a>
<a href="https://lawwwing.com/documents/<your-client-id>/terms-and-conditions/en/">Terms and Conditions</a>
These links are examples, you will find yours within your control panel.
3. Using an iframe
You can also add legal documents to your website using an iframe
. Simply add an iframe
with the URL of the generated legal documents:
<iframe src="https://lawwwing.com/documents/<your-client-id>/legal-notice/en/"></iframe>
<iframe src="https://lawwwing.com/documents/<your-client-id>/privacy-policy/en/"></iframe>
<iframe src="https://lawwwing.com/documents/<your-client-id>/terms-and-conditions/en/"></iframe>
These links are examples, you will find yours within your control panel.