Changeset 2848823
- Timestamp:
- 01/16/2023 01:46:34 AM (3 years ago)
- Location:
- wp-line-notify/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
wp-line-notify.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-line-notify/trunk/readme.txt
r2847749 r2848823 5 5 Tested up to: 6.1.1 6 6 Requires PHP: 7.2 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html 10 10 11 11 This plugin can send a alert message by LINE Notify. 12 (這個外掛可以藉由 LINE Notify 傳送提醒訊息給你) 12 13 13 14 14 == Description == 15 15 16 16 This plugin can send a alert message by LINE Notify 17 (這個外掛可以藉由 LINE Notify 傳送提醒訊息給你) 17 18 18 19 19 == Installation == … … 23 23 e.g. 24 24 25 1. Upload the plugin files to the `/wp-content/plugins/plugin-name` directory, or install the plugin through the WordPress plugins screen directly. (將外掛上傳至目錄 /wp-content/plugins/ 下,或是透過後台安裝外掛)26 2. Activate the plugin through the `Plugins` screen in WordPress. (在外掛清單中啟用本外掛)25 1. Upload the plugin files to the `/wp-content/plugins/plugin-name` directory, or install the plugin through the WordPress plugins screen directly. 26 2. Activate the plugin through the `Plugins` screen in WordPress. 27 27 28 28 == Screenshots == … … 32 32 33 33 == Changelog == 34 35 = 1.4.2 - 2023-01-16 = 36 * Fixed WooCommerce template bug. 34 37 35 38 = 1.4 - 2023-01-13 = -
wp-line-notify/trunk/wp-line-notify.php
r2847749 r2848823 3 3 * Plugin Name: WordPress LINE Notify 4 4 * Description: This plugin can send a alert message by LINE Notify 5 * Version: 1.4. 15 * Version: 1.4.2 6 6 * Author: Simon Chuang 7 7 * Author URI: https://github.com/mark2me/wp-line-notify … … 297 297 if( !empty( $token ) ){ 298 298 299 if( isset($this->option['woo commerce_tpl']) && !empty($this->option['woocommerce_tpl']) ){300 $message = $this->option['woo commerce_tpl'];299 if( isset($this->option['woo_tpl']) && !empty($this->option['woo_tpl']) ){ 300 $message = $this->option['woo_tpl']; 301 301 }else{ 302 302 $message = sig_line_notify_woo::form();
Note: See TracChangeset
for help on using the changeset viewer.