Plugin Directory

Changeset 2582429


Ignore:
Timestamp:
08/13/2021 07:56:54 AM (5 years ago)
Author:
chilidevs
Message:

Release v1.0.2

Location:
messagemedia-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • messagemedia-for-woocommerce/trunk/readme.txt

    r2493819 r2582429  
    33Tags: woocommerce-messagemedia, woocommerce, messagemedia, sms, sms-notification
    44Requires at least: 4.4
    5 Tested up to: 5.7.0
    6 WC requires at least: 3.0
    7 WC tested up to: 5.1.0
     5Tested up to: 5.8.0
     6WC requires at least: 4.0
     7WC tested up to: 5.5.2
    88Requires PHP: 5.6
    99Stable tag: trunk
     
    6767== Changelog ==
    6868
     69= v1.0.2 (August 13, 2021) =
     70
     71- **Fix:** Fixed buyer notification checbox layout styles.
     72- **Fix:** Fixed some code formatting.
     73
    6974= v1.0.1 (March 12, 2021) =
    7075
  • messagemedia-for-woocommerce/trunk/wc-messagemedia.php

    r2493818 r2582429  
    44Plugin URI: https://messagemedia.com/us/
    55Description: 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.1
     6Version: 1.0.2
    77Author: chilidevs
    88Author URI: http://chilidevs.com/
    99Text Domain: wc-messagemedia
    10 WC requires at least: 3.0
    11 WC tested up to: 5.1.0
     10WC requires at least: 4.0
     11WC tested up to: 5.5.2
    1212Domain Path: /languages/
    1313License: GPL2
     
    5656     * @var string
    5757     */
    58     public $version = '1.0.1';
     58    public $version = '1.0.2';
    5959
    6060    /**
     
    153153        add_action( 'init', [ $this, 'init_classes' ] );
    154154
    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 );
    156156        add_action( 'woocommerce_checkout_process', [ $this, 'customer_notification_field_process' ] );
    157157        add_action( 'woocommerce_checkout_update_order_meta', [ $this, 'customer_notification_update_order_meta' ] );
Note: See TracChangeset for help on using the changeset viewer.