Changeset 2617598
- Timestamp:
- 10/21/2021 07:19:38 AM (4 years ago)
- Location:
- wp-line-notify/trunk
- Files:
-
- 4 edited
-
includes/class-elementor.php (modified) (1 diff)
-
includes/class-woo.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-line-notify.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-line-notify/trunk/includes/class-elementor.php
r2599085 r2617598 48 48 49 49 // Normalize the Form Data 50 $fields = [];51 50 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}"; 53 54 } 54 55 -
wp-line-notify/trunk/includes/class-woo.php
r2599085 r2617598 59 59 __( 'Shipping name' , 'wp-line-notify' ), 60 60 __( 'Payment method' , 'wp-line-notify' ), 61 __( 'Total' , 'wp-line-notify' ) ,61 __( 'Total' , 'wp-line-notify' ) 62 62 ); 63 63 -
wp-line-notify/trunk/readme.txt
r2599085 r2617598 1 1 === WP LINE Notify === 2 2 Contributors: simon_tw 3 Tags: plugin, line3 Tags: notify, plugin, line, WooCommerce, Elementor, Contact Form 4 4 Requires at least: 4.8 5 5 Tested up to: 5.8 6 6 Requires PHP: 5.6 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 32 32 33 33 == Changelog == 34 35 = 1.3.1 - 2021-10-21 = 36 * Fixed bug. 37 * Update Elementor form show text. 34 38 35 39 = 1.3 - 2021-09-15 = -
wp-line-notify/trunk/wp-line-notify.php
r2599085 r2617598 3 3 * Plugin Name: WordPress LINE Notify 4 4 * Description: This plugin can send a alert message by LINE Notify 5 * Version: 1.3 5 * Version: 1.3.1 6 6 * Author: Simon Chuang 7 7 * Author URI: https://github.com/mark2me/wp-line-notify
Note: See TracChangeset
for help on using the changeset viewer.