Q1) I tested in English and it seems to work there, however when we switch to German, we don't even see the 4 categories
For German version, I have added below JS codes into your website:
hidden link
section "Search and Pagination", box "JS editor", line 19~23:
// German version
jQuery('input[value="nn-faq-de-hilfe-seite"]').parent('div.form-check').show();
jQuery('input[value="nn-faq-de-native-nanny-werden"]').parent('div.form-check').show();
jQuery('input[value="nn-faq-de-familie"]').parent('div.form-check').show();
jQuery('input[value="nn-faq-de-techsupport"]').parent('div.form-check').show();
As you can see, they are German version of term slugs.
Q2) Also, when we click an FAQ to open it, they all open at once, instead of just the one opening and closing.
Since you are using Booststrap according to setup the those JS effect, you can follow their document to setup it:
hidden link
The problem is: You need to setup the unique ID for each accordion
I have setup a demo in your website,
hidden link
section "Loop Editor", change line 7 to:
<div id="accordion-[wpv-post-id]" class="accordion">
line 14:
<div id="collapse-[wpv-post-id]" class="card-body collapse" data-parent="#accordion-[wpv-post-id]" >
You can use [wpv-post-id] shortcode to setup the unique ID
Q3) Since you are asking for non-built-in feature, so the only workaround is using custom CSS/JS codes for this case.
Hi Luo
That looks better now, I'll just have my colleague test it too in case I missed something, but I think it looks good.
I'll let you know on Friday if all is well.
Thanks and regards
Simon
Hi,
Thanks for the update and we'll wait for the confirmation.
Luo is on vacation and will be back tomorrow, to follow up on this ticket, as needed.
regards,
Waqar
I have marked this thread as "Waiting for feedback" status, please update here when you need more assistance for it.
My issue is resolved now. Thank you!