このプラグインは WordPress の最新3回のメジャーリリースに対してテストされていません。もうメンテナンスやサポートがされていないかもしれず、最新バージョンの WordPress で使用した場合は互換性の問題が発生する可能性があります。

Transmit to Slack

説明

Instantly sends new orders from WooCommerce to your desired Slack channel.

Screenshots

  • This is how new orders shows on Slack (Ver. 1.0)

Getting Started

Step 1: Create Slack App

  • Go to Slack APIs: https://api.slack.com/apps/ and login
  • Create a new app
  • Give it a name (WC Orders, for example)
  • Choose the workspace you would like to integrate with
  • Under “Building Apps for Slack” click on “Incoming Webhooks”
  • At the top – Activate Incoming Webhooks
  • Then, at the bottom, click on the button to add new webhook
  • Choose the channel you wish the orders will show in
  • You can create a new channel on slack and then refresh that page, so you can select the channel you just created
  • Click Install
  • You will see a new webhook URL, something that starts like this: https://hooks.slack.com/services/T8KD1LQ……
  • Copy this URL

Step 2: Add code

  • Add the following code to your functions.php.
  • change “paste Webhook URL here” to the copied URL (from step 1)

add_filter(‘transmit_to_slack_webhook_url’, ‘slack_webhook_url’);
function slack_webhook_url(){
return ‘paste Webhook URL here’;
}

Contribute on GitHub

You are welcome to contribute this open source project on GitHub:
https://github.com/shirgans/transmit-to-slack

スクリーンショット

評価

このプラグインにはレビューがありません。

貢献者と開発者

Transmit to Slack はオープンソースソフトウェアです。以下の人々がこのプラグインに貢献しています。

貢献者

“Transmit to Slack” をあなたの言語に翻訳しましょう。

開発に興味がありますか ?

コードを閲覧するか、SVN リポジトリをチェックするか、開発ログRSS で購読してみてください。

変更履歴

1.0.0 – 2019-06-23

  • First version