Fliplet Accordions

Hi - I am clicking from a list menu from one screen to another, and I want all the accordions to open when landing on this next screen.

To open one, you can use “action=openAccordion” however this only opens one, as opposed to all.

I have tried using “action=openAccordions” but to no avail and could not find the answer online.

Any help would be much appreciated!
Thank you.

We don’t have such query parameter as “openAccordions” to open all accordions on the page, but this could be done by adding a bit of a custom code.
I have a button with attached query parameter “?action=openAccordions”:

Here is the code:

Fliplet().then(function () { //this will run after the page is rendered
  //here you can use any query parameter instead of 'openAccordions'
  if (Fliplet.Navigate.query.action == 'openAccordions'){
    $(document).find('.panel-group .panel').each((index, el)=> {
      $(el).find('.panel-title').trigger('click');
    });
  }
});

Thank you for the quick response - worked perfectly!