Plugin này chưa được cập nhật với 3 phiên bản mới nhất của WordPress. Nó có thể không được hỗ trợ và bảo trì, và có thể xung đột với các phiên bản WordPress mới nhất.

SB SMS Sender

Mô tả

Send SMS to client using SMS club.

Features

  • Simple to use
  • Send SMS after creating new order
  • Send SMS after when order status changed to completed
  • Required using of 3d party service SMS club
  • Support Ukrainian and russian languages
  • Required Woocommerce

Cài đặt

  1. Upload sb-sms-sende folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. Register on SMS club
  4. Setup login, token, alfa name on Cabinet tab
  5. Enable/Disable sending sms on order creation and order is completed

Hỏi đáp

How much does it cost?

1 sms cost as ordinary sms typical to your location
Here you can check the actual pricing

How can I change message of sms?

Add this filter to your theme’s functions.php file:

/**
 * Set SMS message content
 * for new order
 */
add_filter( 'sb_sms_message_new_order', 'child_sms_message_new_order', 10, 2);
function child_sms_message_new_order($message, $order){

    $message = "Your new sms message for new_order";

    return $message;
}

/**
 * Set SMS message content
 * for order_completed
 */
add_filter( 'sb_sms_message_order_completed', 'child_sms_message_order_completed', 10, 2);
function child_sms_message_order_completed($message, $order){
    $message = "Your new sms message for order_completed";

    return $message;
}

Đánh giá

Đọc tất cả 0 đánh giá

Người đóng góp & Lập trình viên

“SB SMS Sender” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

“SB SMS Sender” đã được dịch qua 2 ngôn ngữ. Cảm ơn những người tham gia dịch vì đóng góp của họ.

Dịch “SB SMS Sender” sang ngôn ngữ của bạn.

Muốn tham gia phát triển?

Duyệt code, check out SVN repository, hoặc theo dõi nhật ký phát triển qua RSS.

Nhật ký thay đổi

0.0.2

  • Initial release