How to Add a Multilingual Cookie Consent Banner?
Last updated on June 2, 2025
On this page
Note:
This feature is only available for sites with an active Paid Plan (Basic, Pro, Ultimate).
Cookie banner for multilingual websites





Note:
CookieYes features 41 languages with in-built auto-translated content. You can use the default translation provided or customise the content.

Advanced Configurations
<script>
window.ckySettings = {
documentLang: "en"
};
</script>Note:
This feature is available only for users on the Basic, Pro and Ultimate plans.
<script>
if (window.location.pathname.startsWith("/fr")) {
window.ckySettings = {
documentLang: "fr"
};
}
</script>