• Resolved albesstudio

    (@albesstudio)


    Hi and thanks for future support.
    I am trying to integrate an abandoned cart automation through my email marketing plugin but using the NP Quote Request settings. Normally updated_cart or something similar is used to track the “add to cart” event. I can’t really find anything online that can help me. I would need the add to cart, order completed and order canceled hooks that have been changed from the standard woocommerce ones.
    Thank you, see you soon.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Neah Plugins

    (@gplsaver)

    Hi,
    None of the standard hooks from WooCommerce has been changed. we use ‘woocommerce_add_to_cart’ hook.

    additionally, we also use ‘gpls_woo_rfq_woocommerce_add_to_cart_is_normal’ hook if the
    first plugin setting “1- Checkout Option” is normal checkout
    do_action(‘gpls_woo_rfq_woocommerce_add_to_cart_is_normal’,
    $is_an_rfq, $_REQUEST, $cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data, $rfq_enable);

    example
    add_action(‘gpls_woo_rfq_woocommerce_add_to_cart_is_normal’,’test_add_to_cart_is_normal’,10,9);

    function test_add_to_cart_is_normal($is_an_rfq, $data, $cart_item_key, $product_id, $quantity, $variation_id, $variation, $cart_item_data, $rfq_enable){
    error_log(‘test_add_to_cart_is_normal ‘.$is_an_rfq.’ ‘.$rfq_enable);
    }

    the post status of quotes in the database is wc-gplsquote-req

    Plugin Author Neah Plugins

    (@gplsaver)

    I have not heard from you. so i am marking this as resolved

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

The topic ‘RFQ HOOKs for Email automation’ is closed to new replies.