Changeset 2582429
- Timestamp:
- 08/13/2021 07:56:54 AM (5 years ago)
- Location:
- messagemedia-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wc-messagemedia.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
messagemedia-for-woocommerce/trunk/readme.txt
r2493819 r2582429 3 3 Tags: woocommerce-messagemedia, woocommerce, messagemedia, sms, sms-notification 4 4 Requires at least: 4.4 5 Tested up to: 5. 7.06 WC requires at least: 3.07 WC tested up to: 5. 1.05 Tested up to: 5.8.0 6 WC requires at least: 4.0 7 WC tested up to: 5.5.2 8 8 Requires PHP: 5.6 9 9 Stable tag: trunk … … 67 67 == Changelog == 68 68 69 = v1.0.2 (August 13, 2021) = 70 71 - **Fix:** Fixed buyer notification checbox layout styles. 72 - **Fix:** Fixed some code formatting. 73 69 74 = v1.0.1 (March 12, 2021) = 70 75 -
messagemedia-for-woocommerce/trunk/wc-messagemedia.php
r2493818 r2582429 4 4 Plugin URI: https://messagemedia.com/us/ 5 5 Description: This is an WooCommerce add-on. By Using this plugin admin and customer can get notification after placing order via messagemedia SMS gateways. 6 Version: 1.0. 16 Version: 1.0.2 7 7 Author: chilidevs 8 8 Author URI: http://chilidevs.com/ 9 9 Text Domain: wc-messagemedia 10 WC requires at least: 3.011 WC tested up to: 5. 1.010 WC requires at least: 4.0 11 WC tested up to: 5.5.2 12 12 Domain Path: /languages/ 13 13 License: GPL2 … … 56 56 * @var string 57 57 */ 58 public $version = '1.0. 1';58 public $version = '1.0.2'; 59 59 60 60 /** … … 153 153 add_action( 'init', [ $this, 'init_classes' ] ); 154 154 155 add_action( 'woocommerce_ checkout_after_customer_details', [ $this, 'customer_notification_field' ]);155 add_action( 'woocommerce_review_order_before_submit', [ $this, 'customer_notification_field' ], 99 ); 156 156 add_action( 'woocommerce_checkout_process', [ $this, 'customer_notification_field_process' ] ); 157 157 add_action( 'woocommerce_checkout_update_order_meta', [ $this, 'customer_notification_update_order_meta' ] );
Note: See TracChangeset
for help on using the changeset viewer.