• Resolved 3Lancer

    (@3lancer)


    Hi,

    I previously setup your Ultimate FAQs plugin successfully on a DEV server, works fine. However, moving it to the LIVE server it didn’t detect the previous plugins FAQs (which I’m replacing) this time.

    So I updated them manually via the database:

    UPDATE  wp_posts SET  post_type =  ufaq WHERE  post_type = qa_faqs;
    
    UPDATE  wp_term_taxonomy SET  taxonomy =  ufaq-category WHERE  taxonomy = faq_category;
    
    UPDATE  wp_term_taxonomy SET  taxonomy =  ufaq-tag WHERE  taxonomy = post_tag;

    That worked and I can now see the FAQs, Categories, and Tags from the old plugin in this one.

    However, it’s created an odd issue?

    I have a WordPress page here: /faqs/

    When the plugin is enabled – it created an archive list at /faqs/ rather than taking the WordPress page. The page can be moved to another URL and displays, but why has it created an archive page there (the FAQs page is set to default template)?

    The categories and tags pages under it work fine, just the main root page /faqs/ is replaced. All FAQs are listed with pagination (like the blog/news list).

Viewing 1 replies (of 1 total)
  • Thread Starter 3Lancer

    (@3lancer)

    Found it!

    For anyone else if interested.

    Under file ‘Register_EWD_UFAQ_Posts_Taxonomies.php’, there’s the page args…

    'has_archive' => true
    change to:
    'has_archive' => false

Viewing 1 replies (of 1 total)
  • The topic ‘Remove automatically generated Archive page?’ is closed to new replies.