Shortcodes and extra features for Phlox theme - Version 2.4.14

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.4.14
Comparing to
See all releases

Code changes from version 2.4.13 to 2.4.14

README.txt CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, framework, widget, fullwidth, masonry, timeline, parallax
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
- Tested up to: 5.2.2
10
- Stable tag: 2.4.13
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
6
  Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, framework, widget, fullwidth, masonry, timeline, parallax
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
+ Tested up to: 5.3.0
10
+ Stable tag: 2.4.14
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.4.13 (2019-12-02)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.4.14 (2019-12-07)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
auxin-elements.php CHANGED
@@ -12,14 +12,14 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.4.13
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
- * Tested up to: 5.2.2
23
  */
24
 
25
  // If this file is called directly, abort.
@@ -57,25 +57,8 @@ if( is_admin() ||
57
  'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
58
  'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
59
  'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
60
- ),
61
- array(
62
- 'name' => __('SiteOrigin Widgets Bundle', 'auxin-elements'), // The plugin name.
63
- 'basename' => 'so-widgets-bundle/so-widgets-bundle.php', // The plugin basename (typically the folder name and main php file)
64
- 'required' => false, // If true, the user will be notified with a notice to install the plugin.
65
- 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
66
- 'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
67
- 'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
68
- ),
69
- array(
70
- 'name' => __('Elementor', 'auxin-elements'), // The plugin name.
71
- 'basename' => 'elementor/elementor.php', // The plugin basename (typically the folder name and main php file)
72
- 'required' => false, // If true, the user will be notified with a notice to install the plugin.
73
- 'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
74
- 'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
75
- 'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
76
  )
77
  ),
78
-
79
  'themes' => array(
80
  array(
81
  'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.4.14
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
19
  * License: GPL2
20
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
21
  * Domain Path: /languages
22
+ * Tested up to: 5.3.0
23
  */
24
 
25
  // If this file is called directly, abort.
57
  'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
58
  'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
59
  'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  )
61
  ),
 
62
  'themes' => array(
63
  array(
64
  'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
includes/classes/class-auxin-plugin-requirements.php CHANGED
@@ -168,6 +168,7 @@ if( ! class_exists( 'Auxin_Plugin_Requirements' ) ){
168
 
169
  }
170
 
 
171
  if( $has_new_dependency ){
172
 
173
  // Sort the plugins based on the dependencies
@@ -179,6 +180,7 @@ if( ! class_exists( 'Auxin_Plugin_Requirements' ) ){
179
 
180
  // Change the plugins load order
181
  foreach ( $resolved_plugins_load_order as $plugin_basename ) {
 
182
  if( ( $key = array_search( $plugin_basename, $active_plugins ) ) !== false ) {
183
  unset( $active_plugins[ $key ] );
184
  }
168
 
169
  }
170
 
171
+
172
  if( $has_new_dependency ){
173
 
174
  // Sort the plugins based on the dependencies
180
 
181
  // Change the plugins load order
182
  foreach ( $resolved_plugins_load_order as $plugin_basename ) {
183
+
184
  if( ( $key = array_search( $plugin_basename, $active_plugins ) ) !== false ) {
185
  unset( $active_plugins[ $key ] );
186
  }
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.4.13' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.4.14' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.4.13 (2019-12-02)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.4.14 (2019-12-07)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */