• Resolved gojkob

    (@gojkob)


    Which file and function i need to edit for sending SMS when buyer click send order? I have custom code for SMS sending, but there is a lot of files and i cant find piece of code for submiting.
    SMS function is only for notification employees because they doesn’t always see email
    https://ww.wp.xz.cn/plugins/wppizza/

Viewing 1 replies (of 1 total)
  • Plugin Author ollybach

    (@ollybach)

    Hi,

    you probably want to use the following hook in your themes function.php instead of editing the files directly.
    i.e

    add_action( 'wppizza_on_order_executed', 'my_function',null, 2 );
    function my_function($orderId, $orderTable) {
    /*do your stuff*/
    }

Viewing 1 replies (of 1 total)

The topic ‘Adding sms support’ is closed to new replies.