v 3.7.3 released
This commit is contained in:
parent
13332aabdb
commit
4018d7cc59
|
@ -109,7 +109,7 @@ function mep_event_enqueue_scripts()
|
|||
wp_enqueue_style('font-awesome-css-cdn', "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css", null, 1);
|
||||
wp_enqueue_style('font-awesome-css-cdn-5.2.0', "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.2.0/css/all.min.css", null, 1);
|
||||
wp_enqueue_style('mep-calendar-min-style', plugin_dir_url(__DIR__) . 'css/calendar.min.css', array());
|
||||
wp_enqueue_script('mep-moment-js', plugin_dir_url(__DIR__) . 'js/moment.js', array(), 1, true);
|
||||
|
||||
wp_enqueue_script('mep-calendar-scripts', plugin_dir_url(__DIR__) . 'js/calendar.min.js', array('jquery', 'mep-moment-js'), 1, false);
|
||||
wp_enqueue_script('mep-mixitup-min-js', plugin_dir_url(__DIR__) . 'js/mixitup.min.js', array(), 1, true);
|
||||
wp_enqueue_script('mep-countdown-js', plugin_dir_url(__DIR__) . 'js/countdown.jquery.min.js', array(), 1, true);
|
||||
|
|
|
@ -913,10 +913,12 @@ if (!function_exists('mep_attendee_status_update')) {
|
|||
|
||||
global $wpdb, $wotm;
|
||||
// Getting an instance of the order object
|
||||
$order = wc_get_order($order_id);
|
||||
$order_meta = get_post_meta($order_id);
|
||||
$email = isset($order_meta['_billing_email'][0]) ? $order_meta['_billing_email'][0] : array();
|
||||
$email_send_status = mep_get_option('mep_email_sending_order_status', 'email_setting_sec', array('completed' => 'completed'));
|
||||
$order = wc_get_order($order_id);
|
||||
$order_meta = get_post_meta($order_id);
|
||||
$email = isset($order_meta['_billing_email'][0]) ? $order_meta['_billing_email'][0] : array();
|
||||
$email_send_status = mep_get_option('mep_email_sending_order_status', 'email_setting_sec', array('completed' => 'completed'));
|
||||
$email_send_status = !empty($email_send_status) ? $email_send_status : array('completed' => 'completed');
|
||||
|
||||
// mep_email_sending_order_status
|
||||
$order_status = $order->get_status();
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3,7 +3,7 @@
|
|||
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
|
||||
* Plugin URI: http://mage-people.com
|
||||
* Description: A Complete Event Solution for WordPress by MagePeople..
|
||||
* Version: 3.7.2
|
||||
* Version: 3.7.3
|
||||
* Author: MagePeople Team
|
||||
* Author URI: http://www.mage-people.com/
|
||||
* Text Domain: mage-eventpress
|
||||
|
|
Loading…
Reference in New Issue