Ultimate Member – User Profile & Membership Plugin - Version 1.3.13

Version Description

Download this release

Release Info

Developer ultimatemember
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 1.3.13
Comparing to
See all releases

Code changes from version 1.3.12 to 1.3.13

admin/core/um-admin-access.php CHANGED
@@ -38,6 +38,9 @@ class UM_Admin_Access {
38
  if ( strstr($post_type, 'um_') )
39
  return true;
40
 
 
 
 
41
  if ( !class_exists('UM_bbPress_API') && in_array($post_type,array('forum','topic','reply')) )
42
  return true;
43
 
38
  if ( strstr($post_type, 'um_') )
39
  return true;
40
 
41
+ if ( $post_type == 'shop_order' )
42
+ return true;
43
+
44
  if ( !class_exists('UM_bbPress_API') && in_array($post_type,array('forum','topic','reply')) )
45
  return true;
46
 
admin/core/um-admin-enqueue.php CHANGED
@@ -262,8 +262,10 @@ class UM_Admin_Enqueue {
262
 
263
  if ( $this->is_UM_admin() ) {
264
 
265
- $ultimatemember->styles->wp_enqueue_scripts();
266
-
 
 
267
  $this->load_global_css();
268
  $this->load_form();
269
  $this->load_modal();
262
 
263
  if ( $this->is_UM_admin() ) {
264
 
265
+ if ( get_post_type() != 'shop_order' ) {
266
+ $ultimatemember->styles->wp_enqueue_scripts();
267
+ }
268
+
269
  $this->load_global_css();
270
  $this->load_form();
271
  $this->load_modal();
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
- Version: 1.3.12
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress
6
+ Version: 1.3.13
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
readme.txt CHANGED
@@ -7,7 +7,7 @@ Tags: access control, author, authors, author profile, comments, community, comm
7
  Requires at least: 4.1
8
  Tested up to: 4.2.2
9
 
10
- Stable Tag: 1.3.12
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -150,6 +150,10 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
150
 
151
  == Changelog ==
152
 
 
 
 
 
153
  = 1.3.12: July 22, 2015 =
154
 
155
  * New: ability to delete user cache from plugin dashboard
7
  Requires at least: 4.1
8
  Tested up to: 4.2.2
9
 
10
+ Stable Tag: 1.3.13
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
150
 
151
  == Changelog ==
152
 
153
+ = 1.3.13: July 22, 2015 =
154
+
155
+ * Fixed: Woocommerce manual order dropdown conflict
156
+
157
  = 1.3.12: July 22, 2015 =
158
 
159
  * New: ability to delete user cache from plugin dashboard