Skip to content

Commit

Permalink
Merge pull request #200 from rupok/development
Browse files Browse the repository at this point in the history
 update to v2.9.8
  • Loading branch information
rupok authored Feb 28, 2019
2 parents ecf7edd + ddae5fd commit 30af7c9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 26 deletions.
3 changes: 1 addition & 2 deletions assets/js/eael-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@
}

var AdvanceTabHandler = function ($scope, $) {
console.log('running');
var $currentTab = $scope.find('.eael-advance-tabs'),
$currentTabId = '#' + $currentTab.attr('id').toString();

Expand Down Expand Up @@ -621,7 +620,7 @@
settings = settings;
}
} else {
if (theme !== '') {
if (typeof theme != 'undefined' && theme !== '') {
particlesJS('eael-section-particles-' + sectionId, theme);
}
}
Expand Down
6 changes: 3 additions & 3 deletions essential_adons_elementor.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: The ultimate elements library for Elementor page builder plugin for WordPress.
* Plugin URI: https://essential-addons.com/elementor/
* Author: WPDeveloper
* Version: 2.9.7
* Version: 2.9.8
* Author URI: https://wpdeveloper.net/
*
* Text Domain: essential-addons-elementor
Expand All @@ -16,8 +16,8 @@
define( 'ESSENTIAL_ADDONS_EL_URL', plugins_url( '/', __FILE__ ) );
define( 'ESSENTIAL_ADDONS_EL_PATH', plugin_dir_path( __FILE__ ) );
define( 'ESSENTIAL_ADDONS_EL_ROOT', __FILE__ );
define( 'ESSENTIAL_ADDONS_VERSION', '2.9.7' );
define( 'ESSENTIAL_ADDONS_STABLE_VERSION', '2.9.7' );
define( 'ESSENTIAL_ADDONS_VERSION', '2.9.8' );
define( 'ESSENTIAL_ADDONS_STABLE_VERSION', '2.9.8' );
define( 'ESSENTIAL_ADDONS_BASENAME', plugin_basename( __FILE__ ) );


Expand Down
20 changes: 0 additions & 20 deletions includes/eae-posts-group-control.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,6 @@ public static function get_type() {
return 'eaeposts';
}

public static function on_export_remove_setting_from_element( $element, $control_id ) {
unset( $element['settings'][ $control_id . '_posts_ids' ] );
unset( $element['settings'][ $control_id . '_authors' ] );

foreach ( Utils::get_post_types() as $post_type => $label ) {
$taxonomy_filter_args = [
'show_in_nav_menus' => true,
'object_type' => [ $post_type ],
];

$taxonomies = get_taxonomies( $taxonomy_filter_args, 'objects' );

foreach ( $taxonomies as $taxonomy => $object ) {
unset( $element['settings'][ $control_id . '_' . $taxonomy . '_ids' ] );
}
}

return $element;
}

protected function init_fields() {
$fields = [];

Expand Down
8 changes: 7 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, page build
Requires at least: 4.0
Tested up to: 5.1
Requires PHP: 5.4
Stable tag: 2.9.7
Stable tag: 2.9.8
License: GPLv3
License URI: https://opensource.org/licenses/GPL-3.0

Expand Down Expand Up @@ -167,6 +167,12 @@ Your existing elements/content will work with premium version. So you won't lose

== Changelog ==

= 2.9.8 - 28/02/2019 =

- Facebook Feed removed as it doesn't work with new API
- Version rollback feature removed
- Few minor bugfix and improvements

= 2.9.7 - 25/02/2019 =

- Particles extension revamped
Expand Down

0 comments on commit 30af7c9

Please sign in to comment.