FastFAQs / Hide FAQs DIV If No FAQs
To hide the DIV container if there are no FAQs, wrap it in a conditional on the page like this:Try wrapping your fastfaqs div inside this:
<mvt:if expr="l.settings:fastfaqs:default"> <div id="fastfaqs"> ... </div> </mvt:if>
If that doesn't work, you can try doing it this way which checks to see if there are any FAQs in the array:
<mvt:if expr="miva_array_elements(l.settings:fastfaqs:default) GT 0"> <div id="fastfaqs"> <span class="redactor-invisible-space"> ... </div></span> </mvt:if>