chiaracodes
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick and Easy FAQs] How to hide all FAQ’s showing on default?Got it by using
var target = $(‘.qe-faqs-filters-container .qe-faqs-filter:eq(1)’);
target.parent(‘li’).addClass(‘active’).siblings().removeClass(‘active’);
var allFAQs = $( ‘.qe-faq-toggle’),
filterSelector = target.attr( ‘data-filter’ );
allFAQs.not( filterSelector ).hide().end().filter( filterSelector ).show();!!
Forum: Plugins
In reply to: [Quick and Easy FAQs] How to hide all FAQ’s showing on default?this is the css I put to hide the “all”, in the faqs-filters-container:
.qe-faqs-filters-container li:first-child { display: none; } .qe-faqs-filters-container [data-filter="*"] { display: none; }Which works great, but unfortunately the faq’s are all still listed on page load, I just want the first panel group’s content to show.
Is there jquery or php code I can touch in the plugin file? I”ll keep looking in the mean time.
Forum: Plugins
In reply to: [Quick and Easy FAQs] How to hide all FAQ’s showing on default?Hi Sungraiz,
I’ve already removed the “All” sidebar, but there’s no target selector to remove the “all” questions panel. I’m working locally right now. Thanks for getting back to me. 🙂 I’ll try again with the css