Plugin Directory

Changeset 2617598


Ignore:
Timestamp:
10/21/2021 07:19:38 AM (4 years ago)
Author:
simon_tw
Message:

fixed bug

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

Legend:

Unmodified
Added
Removed
  • wp-line-notify/trunk/includes/class-elementor.php

    r2599085 r2617598  
    4848
    4949        // Normalize the Form Data
    50         $fields = [];
    5150        foreach ( $form_data as $id => $field ) {
    52             $message .= "\n[{$id}] {$field['value']}";
     51            $title = (!empty($field['title'])) ? $field['title'] : $id;
     52            $valeu = (!empty($field['value'])) ? $field['value'] : '';
     53            $message .= "\n[{$title}] {$valeu}";
    5354        }
    5455
  • wp-line-notify/trunk/includes/class-woo.php

    r2599085 r2617598  
    5959            __( 'Shipping name' , 'wp-line-notify' ),
    6060            __( 'Payment method' , 'wp-line-notify' ),
    61             __( 'Total' , 'wp-line-notify' ),
     61            __( 'Total' , 'wp-line-notify' )
    6262        );
    6363
  • wp-line-notify/trunk/readme.txt

    r2599085 r2617598  
    11=== WP LINE Notify ===
    22Contributors: simon_tw
    3 Tags: plugin, line
     3Tags: notify, plugin, line, WooCommerce, Elementor, Contact Form
    44Requires at least: 4.8
    55Tested up to: 5.8
    66Requires PHP: 5.6
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    3232
    3333== Changelog ==
     34
     35= 1.3.1 - 2021-10-21 =
     36* Fixed bug.
     37* Update Elementor form show text.
    3438
    3539= 1.3 - 2021-09-15 =
  • wp-line-notify/trunk/wp-line-notify.php

    r2599085 r2617598  
    33 * Plugin Name: WordPress LINE Notify
    44 * Description: This plugin can send a alert message by LINE Notify
    5  * Version:     1.3
     5 * Version:     1.3.1
    66 * Author:      Simon Chuang
    77 * Author URI:  https://github.com/mark2me/wp-line-notify
Note: See TracChangeset for help on using the changeset viewer.