這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

SB SMS Sender

外掛說明

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

安裝方式

  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

常見問題集

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;
}

使用者評論

閱讀全部 0 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈SB SMS Sender〉的開發相關工作。

參與者

〈SB SMS Sender〉外掛目前已有 2 個本地化語言版本。 感謝全部譯者為這個外掛做出的貢獻。

將〈SB SMS Sender〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

0.0.2

  • Initial release