Version Description
- Fixed: Features image not visible in Post List widget.
Download this release
Release Info
Developer | wpvibes |
Plugin | Elementor Addon Elements |
Version | 1.11.4 |
Comparing to | |
See all releases |
Code changes from version 1.11.3 to 1.11.4
elementor-addon-elements.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Description: Elementor Addon Elements comes with 25+ widgets and extensions to extend the power of Elementor Page Builder.
|
6 |
* Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
|
7 |
* Author: WPVibes
|
8 |
-
* Version: 1.11.
|
9 |
* Author URI: https://wpvibes.com/
|
10 |
* Elementor tested up to: 3.1.0
|
11 |
* Elementor Pro tested up to: 3.2.0
|
@@ -16,7 +16,7 @@ define( 'EAE_FILE', __FILE__ );
|
|
16 |
define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
|
17 |
define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
|
18 |
define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
|
19 |
-
define( 'EAE_VERSION', '1.11.
|
20 |
|
21 |
|
22 |
if ( ! function_exists( '_is_elementor_installed' ) ) {
|
5 |
* Description: Elementor Addon Elements comes with 25+ widgets and extensions to extend the power of Elementor Page Builder.
|
6 |
* Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
|
7 |
* Author: WPVibes
|
8 |
+
* Version: 1.11.4
|
9 |
* Author URI: https://wpvibes.com/
|
10 |
* Elementor tested up to: 3.1.0
|
11 |
* Elementor Pro tested up to: 3.2.0
|
16 |
define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
|
17 |
define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
|
18 |
define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
|
19 |
+
define( 'EAE_VERSION', '1.11.4' );
|
20 |
|
21 |
|
22 |
if ( ! function_exists( '_is_elementor_installed' ) ) {
|
inc/bootstrap.php
CHANGED
@@ -187,7 +187,6 @@ class Plugin {
|
|
187 |
);
|
188 |
}
|
189 |
wp_register_script( 'eae-particles', EAE_URL . 'assets/js/particles' . EAE_SCRIPT_SUFFIX . '.js', [ 'jquery' ], '1.0', true );
|
190 |
-
//wp_register_script( 'eae-tsparticles', EAE_URL . 'assets/js/tsparticles.js', [ 'jquery' ], '1.0', true );
|
191 |
wp_register_style( 'vegas-css', EAE_URL . 'assets/lib/vegas/vegas' . EAE_SCRIPT_SUFFIX . '.css', [], '1.0' );
|
192 |
wp_register_script( 'vegas', EAE_URL . 'assets/lib/vegas/vegas' . EAE_SCRIPT_SUFFIX . '.js', [ 'jquery' ], '2.4.0', true );
|
193 |
|
187 |
);
|
188 |
}
|
189 |
wp_register_script( 'eae-particles', EAE_URL . 'assets/js/particles' . EAE_SCRIPT_SUFFIX . '.js', [ 'jquery' ], '1.0', true );
|
|
|
190 |
wp_register_style( 'vegas-css', EAE_URL . 'assets/lib/vegas/vegas' . EAE_SCRIPT_SUFFIX . '.css', [], '1.0' );
|
191 |
wp_register_script( 'vegas', EAE_URL . 'assets/lib/vegas/vegas' . EAE_SCRIPT_SUFFIX . '.js', [ 'jquery' ], '2.4.0', true );
|
192 |
|
modules/data-table/widgets/data-table.php
CHANGED
@@ -2919,49 +2919,47 @@ class DataTable extends EAE_Widget_Base {
|
|
2919 |
$this->get_render_attribute_string( 'table_text' )
|
2920 |
);
|
2921 |
?>
|
2922 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2923 |
|
2924 |
-
|
2925 |
-
|
2926 |
-
if ( $data['body_column_icon_position'] === 'before' || $data['body_column_icon_position'] === 'top' ) :
|
2927 |
-
$this->render_icon( $data );
|
2928 |
-
endif;
|
2929 |
-
endif;
|
2930 |
-
?>
|
2931 |
-
<?php if ( ! empty( $body_text ) && $data['body_text_type'] !== 'template' ) : ?>
|
2932 |
-
<span class="eae-table-body__text"><?php echo esc_html( $body_text ); ?></span>
|
2933 |
-
<?php endif; ?>
|
2934 |
|
2935 |
-
|
2936 |
-
|
2937 |
-
|
2938 |
-
|
2939 |
-
|
2940 |
-
|
2941 |
-
|
2942 |
-
|
2943 |
-
|
2944 |
-
if ( $data['eae_template_type'] === 'ae_template' && ! empty( $data['table_ae_templates'] ) ) :
|
2945 |
-
echo Plugin::$instance->frontend->get_builder_content( intval( $data['table_ae_templates'] ), true );
|
2946 |
-
endif;
|
2947 |
|
2948 |
-
|
2949 |
-
|
2950 |
|
2951 |
-
|
2952 |
-
<?php
|
2953 |
-
if ( $data['body_column_icon_position'] === 'after' || $data['body_column_icon_position'] === 'bottom' ) :
|
2954 |
-
$this->render_icon( $data );
|
2955 |
-
endif;
|
2956 |
-
endif;
|
2957 |
-
?>
|
2958 |
<?php
|
2959 |
-
|
2960 |
-
|
2961 |
-
|
2962 |
-
|
2963 |
-
|
2964 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
2965 |
</td>
|
2966 |
|
2967 |
<?php
|
2919 |
$this->get_render_attribute_string( 'table_text' )
|
2920 |
);
|
2921 |
?>
|
2922 |
+
<?php if ( $data['body_text_type'] !== 'template' ) : ?>
|
2923 |
+
<?php
|
2924 |
+
if ( $data['body_column_icon_position'] === 'before' || $data['body_column_icon_position'] === 'top' ) :
|
2925 |
+
$this->render_icon( $data );
|
2926 |
+
endif;
|
2927 |
+
endif;
|
2928 |
+
?>
|
2929 |
+
<?php if ( ! empty( $body_text ) && $data['body_text_type'] !== 'template' ) : ?>
|
2930 |
+
<span class="eae-table-body__text"><?php echo esc_html( $body_text ); ?></span>
|
2931 |
+
<?php endif; ?>
|
2932 |
|
2933 |
+
<?php
|
2934 |
+
/* Render template */ if ( $data['body_text_type'] === 'template' ) :
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2935 |
|
2936 |
+
if ( $data['eae_template_type'] === 'saved_section' && ! empty( $data['table_saved_sections'] ) ) :
|
2937 |
+
echo Plugin::$instance->frontend->get_builder_content( intval( $data['table_saved_sections'] ), true );
|
2938 |
+
endif;
|
2939 |
+
if ( $data['eae_template_type'] === 'saved_page' && ! empty( $data['table_saved_pages'] ) ) :
|
2940 |
+
echo Plugin::$instance->frontend->get_builder_content( intval( $data['table_saved_pages'] ), true );
|
2941 |
+
endif;
|
2942 |
+
if ( $data['eae_template_type'] === 'ae_template' && ! empty( $data['table_ae_templates'] ) ) :
|
2943 |
+
echo Plugin::$instance->frontend->get_builder_content( intval( $data['table_ae_templates'] ), true );
|
2944 |
+
endif;
|
|
|
|
|
|
|
2945 |
|
2946 |
+
endif;
|
2947 |
+
?>
|
2948 |
|
2949 |
+
<?php if ( $data['body_text_type'] !== 'template' ) : ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
2950 |
<?php
|
2951 |
+
if ( $data['body_column_icon_position'] === 'after' || $data['body_column_icon_position'] === 'bottom' ) :
|
2952 |
+
$this->render_icon( $data );
|
2953 |
+
endif;
|
2954 |
+
endif;
|
2955 |
+
?>
|
2956 |
+
<?php
|
2957 |
+
printf(
|
2958 |
+
'</%1$s>',
|
2959 |
+
$elem
|
2960 |
+
);
|
2961 |
+
?>
|
2962 |
+
</div>
|
2963 |
</td>
|
2964 |
|
2965 |
<?php
|
modules/post-list/widgets/post-list.php
CHANGED
@@ -703,7 +703,9 @@ class PostList extends EAE_Widget_Base {
|
|
703 |
<?php if ( $settings['show_title'] && ( $settings['title_on_top'] === 'top' ) ) { ?>
|
704 |
<h3 class="eae-pl-title"><a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
|
705 |
<?php } ?>
|
706 |
-
<?php
|
|
|
|
|
707 |
<div class="eae-pl-image-wrapper">
|
708 |
<a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
709 |
<?php the_post_thumbnail( $settings['image_size'] ); ?>
|
703 |
<?php if ( $settings['show_title'] && ( $settings['title_on_top'] === 'top' ) ) { ?>
|
704 |
<h3 class="eae-pl-title"><a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
|
705 |
<?php } ?>
|
706 |
+
<?php
|
707 |
+
//phpcs:ignore WordPress.PHP.StrictComparisons.LooseComparison
|
708 |
+
if ( $settings['show_image'] == 1 ) { ?>
|
709 |
<div class="eae-pl-image-wrapper">
|
710 |
<a href="<?php echo get_permalink(); ?>" title="<?php the_title(); ?>">
|
711 |
<?php the_post_thumbnail( $settings['image_size'] ); ?>
|
modules/thumb-gallery/widgets/thumb-gallery.php
CHANGED
@@ -1994,8 +1994,7 @@ class ThumbGallery extends EAE_Widget_Base {
|
|
1994 |
$slide_element
|
1995 |
);
|
1996 |
?>
|
1997 |
-
|
1998 |
-
</div>
|
1999 |
|
2000 |
<?php } ?>
|
2001 |
</div>
|
1994 |
$slide_element
|
1995 |
);
|
1996 |
?>
|
1997 |
+
</div>
|
|
|
1998 |
|
1999 |
<?php } ?>
|
2000 |
</div>
|
readme.txt
CHANGED
@@ -100,6 +100,9 @@ Column gap => No gap
|
|
100 |
|
101 |
== Changelog ==
|
102 |
|
|
|
|
|
|
|
103 |
= 1.11.3 =
|
104 |
* Fixed: Compatibility issue with PHP 7.2 or lower after previous release.
|
105 |
|
100 |
|
101 |
== Changelog ==
|
102 |
|
103 |
+
= 1.11.4 =
|
104 |
+
* Fixed: Features image not visible in Post List widget.
|
105 |
+
|
106 |
= 1.11.3 =
|
107 |
* Fixed: Compatibility issue with PHP 7.2 or lower after previous release.
|
108 |
|