• Resolved feelingcross

    (@feelingcross)


    how can I make question group order not alpabet?
    for example
    I made question group : FEATURES /REMOVAL / USAGE / TROUBLESHOOTING
    but in website, it shows guestion group order like alpabet :
    FEATURES /REMOVAL / TROUBLESHOOTING / USAGE

    I saw your sample page, it shows rights that doesn’t matter alpabet order. how can I set up?

    other question, is there function search engine in F&A page?

    because my F&A page is too long, so… I wanna install search engine

    please help me ^^

    thank you!

    https://www.ads-software.com/plugins/quick-and-easy-faqs/

Viewing 5 replies - 1 through 5 (of 5 total)
  • It seems the developer of this plugin is nowhere to be found. Lots of unresolved issue are coming but responses so far. I’m having this same issue and no resolution so far.

    I just came upon this issue as I’m developing my site’s FAQs. Though not ideal, I solved this by adding a shortcode for each group slug in the order I wanted it. For example:

    [faqs style=”toggle” grouped=”yes” filter=”my-account”]
    [faqs style=”toggle” grouped=”yes” filter=”online-catalog-searching”]
    [faqs style=”toggle” grouped=”yes” filter=”requests”]
    [faqs style=”toggle” grouped=”yes” filter=”ezone”]

    It works perfectly, you just need to remember to add a new shortcode to the page if you add a new group.

    Kerrie Redgate

    (@kerrie-redgate)

    Why do my questions appear in reverse order to the sequence I wrote them in? The groups headings are not showing anywhere. I found all the short codes once, but now they are hard to find.

    Edit this file : class-quick-and-easy-faqs-public.php

    Replace this :

    $faqs_query_args = array(
    ‘post_type’ => ‘faq’,
    ‘posts_per_page’ => -1,
    );

    by this

    $faqs_query_args = array(
    ‘post_type’ => ‘faq’,
    ‘orderby’ => ‘name’,
    ‘order’ => ‘ASC’,
    ‘posts_per_page’ => -1,
    );

    Plugin Author Muhammad Saqib Sarwar

    (@saqibsarwar)

    FAQs order can be changed by modifying their publish time, As pointed out in this screenshot https://jmp.sh/oqLIGRr

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘question order & search engine’ is closed to new replies.