Cómo cambiar el IDIOMA del botón de AVISO DE COOKIES
Para cambiar el idioma del botón de aviso de cookies al inglés, sigue el paso a paso de abajo:
- Accede al editor de páginas;

- Haz clic en el ícono de engranaje que está en la esquina superior derecha de la pantalla;

- Luego, haz clic en "Javascript & CSS";

- Haz clic para "Adicionar" un nuevo código;

- Elige un nombre para tu código, selecciona la opción "Funcionamento" y agrega en el campo de texto todo el código de abajo;
<script>
setTimeout(() => {
$('#gpc-lgpd_botoes-configurar').html('Set Up');
$('#gpc-lgpd_botoes-confirmar').html('Understood and accepted');
},400);
$('body').on('click','#gpc-lgpd_botoes-configurar',function(){
setTimeout(() => {
$('.gpc_modal_lgpd-titulo-titulo').html('Cookie Settings');
$('.gpc_modal_lgpd-titulo-texto').html('You can choose which cookies to accept');
$('#gpc_modal_lgpd-confirmar').html('Confirm settings');
$('.gpc_modal_lgpd-opcoes').each(function(i, atual){
if(i==0){
$(atual).find('.gpc_modal_lgpd-opcoes-titulo').html('Mandatory cookies');
$(atual).find('.gpc_modal_lgpd-opcoes-aviso').html('Always active');
$(atual).find('.gpc_modal_lgpd-opcoes-texto').html('They are cookies to ensure the proper functioning of the website.');
}
if(i==1){
$(atual).find('.gpc_modal_lgpd-opcoes-titulo').html('Statistics cookies');
$(atual).find('.gpc_modal_lgpd-opcoes-texto').html('They are used to collect information to display specific content to a particular browser when creating different target groups.');
}
if(i==2){
$(atual).find('.gpc_modal_lgpd-opcoes-titulo').html('Marketing cookies');
$(atual).find('.gpc_modal_lgpd-opcoes-texto').html('They are used to collect information to display advertising or specific content to a particular browser by creating different target groups.');
}
});
}, 400);
});
</script>
¡Luego haz clic en "Salvar"!
¿Te quedó alguna duda? ¡Habla con nuestro equipo en el Chat! Siempre estamos listos para ayudarte.
Actualizado el: 29/07/2026
¡Gracias!
