I’m liking the latest update (1.7) to Faceted Browse, including the ability to add instructions. Is there any way to make the instructions “closed” by default (meaning that the instructions below the button would not appear until clicked)? I know it’s a minor thing but I can’t seem to figure it out.
You could make the instructions closed by default by modifying the file FacetedBrowse/view/faceted-browse/site/page/facets.phtml
:
Change this line:
<a id="helper-text-expand-collapse" class="button collapse" href="#"" aria-expanded="false"><?php echo $this->escapeHtml($helperTextButtonLabel); ?> </a>
To this:
<a id="helper-text-expand-collapse" class="button expand" href="#"" aria-expanded="false"><?php echo $this->escapeHtml($helperTextButtonLabel); ?> </a>
1 Like
That did the trick! Thanks!