CMS Development

Jlawal
Contributeur de premier rang

FAQ module won't open

Résolue

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 Votes
1 Solution acceptée
Solution
Anonymous
Non applicable

FAQ module won't open

Résolue

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 très heureux

Voir la solution dans l'envoi d'origine

5 Réponses
jessebeginbound
Participant | Partenaire solutions Platinum
Participant | Partenaire solutions Platinum

FAQ module won't open

Résolue

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 Votes
tjoyce
Expert reconnu | Partenaire solutions Elite
Expert reconnu | Partenaire solutions Elite

FAQ module won't open

Résolue

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

0 Votes
Jlawal
Contributeur de premier rang

FAQ module won't open

Résolue

Hi @tjoyce - thanks for your reply.


I took the module from this template.

0 Votes
Solution
Anonymous
Non applicable

FAQ module won't open

Résolue

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 très heureux

Jlawal
Contributeur de premier rang

FAQ module won't open

Résolue

Hi @Anonymous,

 

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