CMS Development

Jlawal
Top colaborador(a)

FAQ module won't open

resolver

Hello,

 

I've put together an FAQ page (can be seen here

 

arrow faq.PNG

Clicking the circled arrow would expand the question and appear like the image below, but this function has stopped working over the past day and i'm not sure why. Any advice on this would be greatly appreciated 🙂 

 

 

faq.PNG

0 Avaliação positiva
1 Solução aceita
Solução
Anonymous
Não aplicável

FAQ module won't open

resolver

Hi @Jlawal,

JavaScript for the accordion is missing.

This is the JS needed for running your accordion. You can place it anywhere in your template and lock the module.

jQuery(document).ready(function(d){
d(".common-section1 .hs_cos_wrapper_widget").first().find(".common-inner h5").addClass("active");
d(".common-section1 .hs_cos_wrapper_widget").first().find(".common-inner h5").next().slideDown(250);
d(".common-inner h5").click(function(){
	d(".common-inner h5").not(d(this)).removeClass("active");
	d(".common-text").not(d(this).next()).slideUp();
	d(this).toggleClass("active");
	d(this).next().slideToggle(250)});
	d(".accordion-section .hs_cos_wrapper_widget").first().find(".faq2-box h5").addClass("active");
	d(".accordion-section .hs_cos_wrapper_widget").first().find(".faq2-box h5").next().slideDown(250);
	d(".faq2-box h5").click(function(){d(".faq2-box h5").not(d(this)).removeClass("active");
		d(".faq2-text").not(d(this).next()).slideUp();
		d(this).toggleClass("active");d(this).next().slideToggle(250)
});
});

This is the JS of the template you purchased :- https://www.revenueriver.co/hs-fs/hub/177047/hub_generated/template_assets/1529919253445/Custom/page...

In case you want other JS of the pages.

Hope it helps! Smiley muito feliz

Exibir solução no post original

5 Respostas 5
jessebeginbound
Participante | Parceiro Platinum
Participante | Parceiro Platinum

FAQ module won't open

resolver

Hi, @Jlawal 

If anyone ever runs into this again and gets tired of trying to figure out the code, we made a universal FAQ module that you can find on the HubSpot Marketplace here: https://marketplace.hubspot.com/products/begin-bound/beginbound-ultimate-faq-module-live

 

It has enough style options to match any brand and make it easy for you to add as many FAQ's as you want to any template.

 

Happy HubSpotting!

0 Avaliação positiva
tjoyce
Especialista reconhecido(a) | Parceiro Elite
Especialista reconhecido(a) | Parceiro Elite

FAQ module won't open

resolver

@Jlawal - where did you get this module? I don't see any javascript related to the accordion in your source code

0 Avaliação positiva
Jlawal
Top colaborador(a)

FAQ module won't open

resolver

Hi @tjoyce - thanks for your reply.


I took the module from this template.

0 Avaliação positiva
Solução
Anonymous
Não aplicável

FAQ module won't open

resolver

Hi @Jlawal,

JavaScript for the accordion is missing.

This is the JS needed for running your accordion. You can place it anywhere in your template and lock the module.

jQuery(document).ready(function(d){
d(".common-section1 .hs_cos_wrapper_widget").first().find(".common-inner h5").addClass("active");
d(".common-section1 .hs_cos_wrapper_widget").first().find(".common-inner h5").next().slideDown(250);
d(".common-inner h5").click(function(){
	d(".common-inner h5").not(d(this)).removeClass("active");
	d(".common-text").not(d(this).next()).slideUp();
	d(this).toggleClass("active");
	d(this).next().slideToggle(250)});
	d(".accordion-section .hs_cos_wrapper_widget").first().find(".faq2-box h5").addClass("active");
	d(".accordion-section .hs_cos_wrapper_widget").first().find(".faq2-box h5").next().slideDown(250);
	d(".faq2-box h5").click(function(){d(".faq2-box h5").not(d(this)).removeClass("active");
		d(".faq2-text").not(d(this).next()).slideUp();
		d(this).toggleClass("active");d(this).next().slideToggle(250)
});
});

This is the JS of the template you purchased :- https://www.revenueriver.co/hs-fs/hub/177047/hub_generated/template_assets/1529919253445/Custom/page...

In case you want other JS of the pages.

Hope it helps! Smiley muito feliz

Jlawal
Top colaborador(a)

FAQ module won't open

resolver

Hi @Anonymous,

 

That's worked perfectly! Thank you for your help 🙂