Búsquedas recientes


No hay búsquedas recientes

Jason McDonald's Avatar

Jason McDonald

Incorporación 24 feb 2023

·

Última actividad 27 feb 2023

Seguimientos

0

Seguidores

0

Actividad total

6

Votos

0

Suscripción

1

RESUMEN DE LA ACTIVIDAD

Última actividad de Jason McDonald

Jason McDonald hizo un comentario,

Comentario de la comunidad Discussion - Tips and best practices from the community

Ver comentario · Publicado 27 feb 2023 · Jason McDonald

0

Seguidores

0

Votos

0

Comentarios


Jason McDonald hizo un comentario,

Comentario de la comunidad Discussion - Tips and best practices from the community

Hi Ifra.

This is exactly what I have done and the accordion won't expand when clicked.

Ver comentario · Publicado 27 feb 2023 · Jason McDonald

0

Seguidores

0

Votos

0

Comentarios


Jason McDonald hizo un comentario,

Comentario de la comunidad Discussion - Tips and best practices from the community

The only code I have added to the script.js file is 

document.addEventListener('DOMContentLoaded', function() {
var acc = document.getElementsByClassName("accordion");
var i;

for (i = 0; i < acc.length; i++) {
acc[i].addEventListener("click", function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight) {
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
});
}
});

We have multiple HC's for different brands and there's different content writers so I'm not sure what modifications have been made to this particular theme. As I said the accordion is working in other HC's we have. 

Is there anyway to find out which part of the theme code is affecting this? 

Ver comentario · Editado 24 feb 2023 · Jason McDonald

0

Seguidores

0

Votos

0

Comentarios


Jason McDonald hizo un comentario,

Comentario de la comunidad Discussion - Tips and best practices from the community

script.js:473 Uncaught SyntaxError: Unexpected token 'export'

Ver comentario · Publicado 24 feb 2023 · Jason McDonald

0

Seguidores

0

Votos

0

Comentarios


Jason McDonald hizo un comentario,

Comentario de la comunidad Discussion - Tips and best practices from the community

Hello. 

I've added the code Trapta provided at the beginning of the thread and this works perfectly in our sandbox HC.
When I tried doing it on our live environment it's not working. The accordion is here but clicking on it does not expand it. 

Ver comentario · Publicado 24 feb 2023 · Jason McDonald

0

Seguidores

0

Votos

0

Comentarios