• Resolved n0th

    (@n0th)


    Hi!

    Ive been using your plugin for years and now im changing the website and using a new Woocommerce Quickview plugin, the form appears ok in the single product page but not on the quick view, the developer told me I can add this information using this code :

    add_action( ‘xt_wooqv_product_summary’, ‘XXXXX’,35); But Im not sure if I can use a code from you to replace the XXXX in order to appear in the modal.

    I tried this base on other post here but not worked:

    add_action( ‘xt_wooqv_product_summary’, ‘woocommerce_single_product_summary’,35);

    Do you think can be solved?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author MultiVendorX

    (@wcmp)

    Hi @n0th, our team is looking into this, kindly provide them sometimes.

    Hi,
    Kindly add below code and check.
    Please add this code of the function.php of your current active theme

    add_action('init', 'custom_changes');
    function custom_changes(){
    	global $WOO_Product_Stock_Alert;
    	add_action( 'xt_wooqv_product_summary', array($WOO_Product_Stock_Alert->frontend, 'get_alert_form'), 35);
    }

    Regards,

    Thread Starter n0th

    (@n0th)

    Not working for me :(, but thanks!

    Hi,

    alternatively you can also use below shortcode to show the form.
    [display_stock_alert_form]

    Regards,

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Add form to a Quickview plugin’ is closed to new replies.