• Hi,
    I have installed “NP request to quote” plugin on my site. Unfortunatelly my multistep checkout plugin is not working if I activate NP request to quote. When I deactivate this plugin, multistep checkout works perfectly.
    Please guide me for the same.

Viewing 3 replies - 1 through 3 (of 3 total)
  • In the “/wp-content/plugins/woo-rfq-for-woocommerce/includes/classes/emails/class-wc-email-rfq.php” file you need to check if the a $template variable is already defined before overriding it with the theme’s template.

    So line 123-129:

    // Look within passed path within the theme - this is priority
    $template = locate_template(
        array(
            $template_path . $template_name,
            $template_name
        )
    );

    need to look as follows:

    // Look within passed path within the theme - this is priority
    if ( ! $template ) {
        $template = locate_template(
            array(
                $template_path . $template_name,
                $template_name
            )
        );
    }

    The WooCommerce Multi-Step Checkout plugin needs to load its own version of the “checkout/form-checkout.php” template, but if the template is already defined in the theme, as for example the eStore theme does, then the NP Quote Request plugin forces the website to load the theme’s template instead of the multi-step checkout’s plugin.

    Plugin Author Neah Plugins

    (@gplsaver)

    @diana_burduja, Thanks a lot for the quick help with this.

    @chitramehendale, We will include in the next update after testing and verifying the solution.

    Plugin Author Neah Plugins

    (@gplsaver)

    Please update to 1.8.233 and let me know if that fixes the issue.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘NP Request to Quote disables multistep checkout plugin’ is closed to new replies.