问题描述
在Woocommerce中,要将短信付款信息发送给客户,我需要在成功付款后激活触发器.
In Woocommerce, to send sms payment information to the customer, I need to activate a trigger after a successful payment.
但是我没有发现任何钩子
But I didn't find any hook do it
这是我的插件代码:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( '####Action to be used here#######', array( &$this, 'successful_payment_notification_client' ) );
}
/* WooCommerce Successful payment notification client
*
* @param $order_id
*/
public function successful_payment_notification_client ( $order_id ) {
// Check the mobile field is empty
if ( empty( $_REQUEST['mobile'] ) ) {
return;
}
$order = new WC_Order( $order_id );
$this->sms->to = array( $_REQUEST['mobile'] );
$template_vars = array(
'%order_id%' => $order_id,
'%order_number%' => $order->get_order_number(),
'%status%' => $order->get_status(),
'%billing_first_name%' => $_REQUEST['billing_first_name'],
'%billing_last_name%' => $_REQUEST['billing_last_name'],
'%transaction_id%' => get_post_meta( $order_id,'_payment_method_title', true ),
);
$message = str_replace( array_keys( $template_vars ), array_values( $template_vars ), $this->options['wc_notify_customer_payment_successful_message'] );
$this->sms->msg = $message;
$this->sms->SendSMS();
}
所需的钩子应该在我的代码的第二行.
The desired hook should come in line two of my code.
任何帮助将不胜感激.
推荐答案
您应该尝试使用 woocommerce_payment_complete
操作挂钩,该挂钩是专门为此创建的,位于 WC_Order
payment_completed()
方法.付款成功后会触发强制.因此,尝试:
You should try to use woocommerce_payment_complete
action hook that is just made specifically for that and located in WC_Order
payment_completed()
method. It's triggered jus after a successful payment. So try:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_payment_complete', array( &$this, 'successful_payment_notification_client' ) );
}
或使用 woocommerce_payment_complete_order_status_processing
钩子:
Or using woocommerce_payment_complete_order_status_processing
hook:
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_payment_complete_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );
}
或使用woocommerce_order_status_processing
钩子(但带有2个参数:$order_id
和$order
):
or using woocommerce_order_status_processing
hook (but with 2 arguments: $order_id
and $order
):
if ( isset( $this->options['wc_notify_customer_payment_successful_enable'] ) ) {
add_action( 'woocommerce_order_status_processing', array( &$this, 'successful_payment_notification_client' ) );
}
代码在您的插件文件中...
Code goes in your plugin file…
add_action( 'the_hook', 'the_hooked_function', $priority, $nb_of_args );
这篇关于成功付款后,在Woocommerce中触发了什么挂钩的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!