Version Description
Update : Smart Optimised Assets loading : Add action on wp_footer Update : On Demand Assets loading : Add action on wp_print_footer_scripts Update : Admin Welcome Page Fix : Minor fixes and Improvements
Download this release
Release Info
Code changes from version 5.1.8 to 5.1.9
- includes/welcome-page.php +4 -4
- modules/enqueue/plus-generator.php +5 -1
- readme.txt +7 -1
- theplus_elementor_addon.php +2 -2
includes/welcome-page.php
CHANGED
@@ -94,11 +94,11 @@ echo '<div class="theplus-panel-welcome-page">';
|
|
94 |
echo '<div class="theplus-sec-subtitle">'.esc_html__('Notable additions made to The Plus Addons for Elementor.','tpebl').'</div>';
|
95 |
echo '<div class="theplus-sec-border"></div>';
|
96 |
echo '<div class="theplus-changelog-list">';
|
97 |
-
echo '<div class="changelog-date">Aug
|
98 |
echo '<ul class="changelog-list">';
|
99 |
-
echo '<li>'.esc_html__('Update :
|
100 |
-
echo '<li>'.esc_html__('Update :
|
101 |
-
echo '<li>'.esc_html__('
|
102 |
echo '</ul>';
|
103 |
echo '</div>';
|
104 |
echo '<a href="https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/#developers" class="theplus-panel-btn theplus-mt-8" title="'.esc_attr__('change log','tpebl').'" target="_blank">'.esc_html__('Lite Full Change log','tpebl').'</a>';
|
94 |
echo '<div class="theplus-sec-subtitle">'.esc_html__('Notable additions made to The Plus Addons for Elementor.','tpebl').'</div>';
|
95 |
echo '<div class="theplus-sec-border"></div>';
|
96 |
echo '<div class="theplus-changelog-list">';
|
97 |
+
echo '<div class="changelog-date">Aug 24,2022 <span class="changelog-version">Lite Version 5.1.9</span></div>';
|
98 |
echo '<ul class="changelog-list">';
|
99 |
+
echo '<li>'.esc_html__('Update : Smart Optimised Assets loading : Add action on wp_footer','tpebl').'</li>';
|
100 |
+
echo '<li>'.esc_html__('Update : On Demand Assets loading : Add action on wp_print_footer_scripts','tpebl').'</li>';
|
101 |
+
echo '<li>'.esc_html__('Update : Admin Welcome Page','tpebl').'</li>';
|
102 |
echo '</ul>';
|
103 |
echo '</div>';
|
104 |
echo '<a href="https://wordpress.org/plugins/the-plus-addons-for-elementor-page-builder/#developers" class="theplus-panel-btn theplus-mt-8" title="'.esc_attr__('change log','tpebl').'" target="_blank">'.esc_html__('Lite Full Change log','tpebl').'</a>';
|
modules/enqueue/plus-generator.php
CHANGED
@@ -940,7 +940,11 @@ Class L_Plus_Generator
|
|
940 |
add_action('elementor/frontend/before_render', array($this, 'collect_transient_widgets'));
|
941 |
}
|
942 |
|
943 |
-
|
|
|
|
|
|
|
|
|
944 |
|
945 |
add_action( 'save_post', array($this,'tp_post_save_transient'), 10,3 );
|
946 |
|
940 |
add_action('elementor/frontend/before_render', array($this, 'collect_transient_widgets'));
|
941 |
}
|
942 |
|
943 |
+
if(!empty($this->get_caching_option())){
|
944 |
+
add_action('wp_footer', array($this, 'generate_scripts_frontend'));
|
945 |
+
}else{
|
946 |
+
add_action('wp_print_footer_scripts', array($this, 'generate_scripts_frontend'));
|
947 |
+
}
|
948 |
|
949 |
add_action( 'save_post', array($this,'tp_post_save_transient'), 10,3 );
|
950 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: Elementor, elementor widgets, elements, elementor addon, elementor templat
|
|
4 |
Requires at least: 5.7.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.1.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -279,6 +279,12 @@ We have the most advanced caching architecture, Which will never bloat your site
|
|
279 |
|
280 |
== Changelog ==
|
281 |
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
= 5.1.8 =
|
283 |
Update : CSS & JS Assets loading improvement for Archive page
|
284 |
Update : Admin Welcome Page Update
|
4 |
Requires at least: 5.7.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.1.9
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
279 |
|
280 |
== Changelog ==
|
281 |
|
282 |
+
= 5.1.9 =
|
283 |
+
Update : Smart Optimised Assets loading : Add action on wp_footer
|
284 |
+
Update : On Demand Assets loading : Add action on wp_print_footer_scripts
|
285 |
+
Update : Admin Welcome Page
|
286 |
+
Fix : Minor fixes and Improvements
|
287 |
+
|
288 |
= 5.1.8 =
|
289 |
Update : CSS & JS Assets loading improvement for Archive page
|
290 |
Update : Admin Welcome Page Update
|
theplus_elementor_addon.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: The Plus Addons for Elementor
|
4 |
* Plugin URI: https://theplusaddons.com/
|
5 |
* Description: Biggest collection of Widgets & Features to supercharge your Elementor Page builder in WordPress.
|
6 |
-
* Version: 5.1.
|
7 |
* Author: POSIMYTH
|
8 |
* Author URI: https://posimyth.com/
|
9 |
* Text Domain: tpebl
|
@@ -14,7 +14,7 @@
|
|
14 |
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
exit;
|
16 |
}
|
17 |
-
defined( 'L_THEPLUS_VERSION' ) or define( 'L_THEPLUS_VERSION', '5.1.
|
18 |
define( 'L_THEPLUS_FILE__', __FILE__ );
|
19 |
|
20 |
define( 'L_THEPLUS_PATH', plugin_dir_path( __FILE__ ) );
|
3 |
* Plugin Name: The Plus Addons for Elementor
|
4 |
* Plugin URI: https://theplusaddons.com/
|
5 |
* Description: Biggest collection of Widgets & Features to supercharge your Elementor Page builder in WordPress.
|
6 |
+
* Version: 5.1.9
|
7 |
* Author: POSIMYTH
|
8 |
* Author URI: https://posimyth.com/
|
9 |
* Text Domain: tpebl
|
14 |
if ( ! defined( 'ABSPATH' ) ) {
|
15 |
exit;
|
16 |
}
|
17 |
+
defined( 'L_THEPLUS_VERSION' ) or define( 'L_THEPLUS_VERSION', '5.1.9' );
|
18 |
define( 'L_THEPLUS_FILE__', __FILE__ );
|
19 |
|
20 |
define( 'L_THEPLUS_PATH', plugin_dir_path( __FILE__ ) );
|