Viewing 5 replies - 1 through 5 (of 5 total)
  • I don’t see how that /faqs page is linked in to the main pages? I can find no logical navigation to that page which makes it look as if it sits outside the Czr site?

    Thread Starter Victor Alleva Beleti

    (@victor-alleva-beleti)

    It’s a FAQ page plugin Q & A Focus Plus. Did not quite understand what you said. How can I fix this?

    This occurred after the last update.

    Thread Starter Victor Alleva Beleti

    (@victor-alleva-beleti)

    These FAQ’s no need to be in the main page to function faultlessly.

    The problem is related to some changes made to customizr, specifically the use a certain action hook (template_redirect).
    Basically that plug-in includes a template (say index.php) when customizr isn’t ready yet to render some stuff (header and others things).
    That said, there could be a solution which implies using a child-theme.
    After created it just append this code to the child-theme functions.php:

    add_action('wp', 'qa_patch', 0);
    function qa_patch(){
        if ( ! function_exists('qafp_template_redirect') )
            return;
        remove_action('template_redirect', 'qafp_template_redirect');
        // this could be superfluous
        add_action('template_redirect', 'qafp_template_redirect', 200);
    }

    Thread Starter Victor Alleva Beleti

    (@victor-alleva-beleti)

    THANKS!!!!!!!!!!!!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘My FAQ's in trouble’ is closed to new replies.