Plugin Directory

Changeset 2848823


Ignore:
Timestamp:
01/16/2023 01:46:34 AM (3 years ago)
Author:
simon_tw
Message:

fixed woocommerce template bug.

Location:
wp-line-notify/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-line-notify/trunk/readme.txt

    r2847749 r2848823  
    55Tested up to: 6.1.1
    66Requires PHP: 7.2
    7 Stable tag: 1.4.1
     7Stable tag: 1.4.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
    1010
    1111This plugin can send a alert message by LINE Notify.
    12 (這個外掛可以藉由 LINE Notify 傳送提醒訊息給你)
     12
    1313
    1414== Description ==
    1515
    1616This plugin can send a alert message by LINE Notify
    17 (這個外掛可以藉由 LINE Notify 傳送提醒訊息給你)
     17
    1818
    1919== Installation ==
     
    2323e.g.
    2424
    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.(在外掛清單中啟用本外掛)
     251. Upload the plugin files to the `/wp-content/plugins/plugin-name` directory, or install the plugin through the WordPress plugins screen directly.
     262. Activate the plugin through the `Plugins` screen in WordPress.
    2727
    2828== Screenshots ==
     
    3232
    3333== Changelog ==
     34
     35= 1.4.2 - 2023-01-16 =
     36* Fixed WooCommerce template bug.
    3437
    3538= 1.4 - 2023-01-13 =
  • wp-line-notify/trunk/wp-line-notify.php

    r2847749 r2848823  
    33 * Plugin Name: WordPress LINE Notify
    44 * Description: This plugin can send a alert message by LINE Notify
    5  * Version:     1.4.1
     5 * Version:     1.4.2
    66 * Author:      Simon Chuang
    77 * Author URI:  https://github.com/mark2me/wp-line-notify
     
    297297        if( !empty( $token ) ){
    298298
    299             if( isset($this->option['woocommerce_tpl']) && !empty($this->option['woocommerce_tpl']) ){
    300                 $message = $this->option['woocommerce_tpl'];
     299            if( isset($this->option['woo_tpl']) && !empty($this->option['woo_tpl']) ){
     300                $message = $this->option['woo_tpl'];
    301301            }else{
    302302                $message = sig_line_notify_woo::form();
Note: See TracChangeset for help on using the changeset viewer.