a3 Lazy Load - Version 1.8.8

Version Description

Maintenance Update. Compatibility WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU

Download this release

Release Info

Developer a3rev
Plugin Icon 128x128 a3 Lazy Load
Version 1.8.8
Comparing to
See all releases

Code changes from version 1.8.7 to 1.8.8

Files changed (3) hide show
  1. a3-lazy-load.php +3 -3
  2. admin/admin-interface.php +4 -2
  3. readme.txt +10 -2
a3-lazy-load.php CHANGED
@@ -2,11 +2,11 @@
2
  /*
3
  Plugin Name: a3 Lazy Load
4
  Description: Speed up your site and enhance frontend user's visual experience in PC's, Tablets and mobile with a3 Lazy Load.
5
- Version: 1.8.7
6
  Author: a3rev Software
7
  Author URI: https://a3rev.com/
8
  Requires at least: 4.0
9
- Tested up to: 4.9.4
10
  Text Domain: a3-lazy-load
11
  Domain Path: /languages
12
  License: GPLv2 or later
@@ -30,7 +30,7 @@ define('A3_LAZY_LOAD_CSS_URL', A3_LAZY_LOAD_URL . '/assets/css');
30
  define('A3_LAZY_LOAD_IMAGES_URL', A3_LAZY_LOAD_URL . '/assets/images');
31
 
32
  define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
33
- define( 'A3_LAZY_VERSION', '1.8.7' );
34
 
35
  /**
36
  * Load Localisation files.
2
  /*
3
  Plugin Name: a3 Lazy Load
4
  Description: Speed up your site and enhance frontend user's visual experience in PC's, Tablets and mobile with a3 Lazy Load.
5
+ Version: 1.8.8
6
  Author: a3rev Software
7
  Author URI: https://a3rev.com/
8
  Requires at least: 4.0
9
+ Tested up to: 4.9.6
10
  Text Domain: a3-lazy-load
11
  Domain Path: /languages
12
  License: GPLv2 or later
30
  define('A3_LAZY_LOAD_IMAGES_URL', A3_LAZY_LOAD_URL . '/assets/images');
31
 
32
  define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
33
+ define( 'A3_LAZY_VERSION', '1.8.8' );
34
 
35
  /**
36
  * Load Localisation files.
admin/admin-interface.php CHANGED
@@ -1846,6 +1846,7 @@ class A3_Lazy_Load_Admin_Interface extends A3_Lazy_Load_Admin_UI
1846
  $progressing_text = $value['progressing_text'];
1847
  $completed_text = $value['completed_text'];
1848
  $successed_text = $value['successed_text'];
 
1849
  $submit_data = json_encode( $value['submit_data'] );
1850
 
1851
  ?><tr valign="top">
@@ -1864,7 +1865,7 @@ class A3_Lazy_Load_Admin_Interface extends A3_Lazy_Load_Admin_UI
1864
  <?php echo implode( ' ', $custom_attributes ); ?>
1865
  ><?php echo $button_name; ?></button>
1866
  <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1867
- <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"></span>
1868
 
1869
  <!-- Progress Bar -->
1870
  <div class="a3rev-ui-progress-bar-wrap">
@@ -1887,6 +1888,7 @@ class A3_Lazy_Load_Admin_Interface extends A3_Lazy_Load_Admin_UI
1887
  $progressing_text = $value['progressing_text'];
1888
  $completed_text = $value['completed_text'];
1889
  $successed_text = $value['successed_text'];
 
1890
  $statistic_column = isset( $value['statistic_column'] ) ? $value['statistic_column'] : 1;
1891
 
1892
  $multi_current_items = 0;
@@ -1931,7 +1933,7 @@ class A3_Lazy_Load_Admin_Interface extends A3_Lazy_Load_Admin_UI
1931
  <?php echo implode( ' ', $custom_attributes ); ?>
1932
  ><?php echo $button_name; ?></button>
1933
  <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1934
- <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"></span>
1935
 
1936
  <!-- Progress Bar -->
1937
  <div class="a3rev-ui-progress-bar-wrap">
1846
  $progressing_text = $value['progressing_text'];
1847
  $completed_text = $value['completed_text'];
1848
  $successed_text = $value['successed_text'];
1849
+ $errors_text = $value['errors_text'];
1850
  $submit_data = json_encode( $value['submit_data'] );
1851
 
1852
  ?><tr valign="top">
1865
  <?php echo implode( ' ', $custom_attributes ); ?>
1866
  ><?php echo $button_name; ?></button>
1867
  <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1868
+ <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"><?php echo $errors_text; ?></span>
1869
 
1870
  <!-- Progress Bar -->
1871
  <div class="a3rev-ui-progress-bar-wrap">
1888
  $progressing_text = $value['progressing_text'];
1889
  $completed_text = $value['completed_text'];
1890
  $successed_text = $value['successed_text'];
1891
+ $errors_text = $value['errors_text'];
1892
  $statistic_column = isset( $value['statistic_column'] ) ? $value['statistic_column'] : 1;
1893
 
1894
  $multi_current_items = 0;
1933
  <?php echo implode( ' ', $custom_attributes ); ?>
1934
  ><?php echo $button_name; ?></button>
1935
  <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1936
+ <span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"><?php echo $errors_text; ?></span>
1937
 
1938
  <!-- Progress Bar -->
1939
  <div class="a3rev-ui-progress-bar-wrap">
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: a3rev, a3rev Software, nguyencongtuan
3
  Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
4
  Requires at least: 4.5
5
- Tested up to: 4.9.4
6
- Stable tag: 1.8.7
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -194,6 +194,11 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
194
 
195
  == Changelog ==
196
 
 
 
 
 
 
197
  = 1.8.7 - 2018/03/24 =
198
  * Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
199
  * Tweak - Increase lazy load filter priority value so that lazy load is applied to images loaded by the shortcode function do_shortcode
@@ -376,6 +381,9 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
376
 
377
  == Upgrade Notice ==
378
 
 
 
 
379
  = 1.8.7 =
380
  Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
381
 
2
  Contributors: a3rev, a3rev Software, nguyencongtuan
3
  Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
4
  Requires at least: 4.5
5
+ Tested up to: 4.9.6
6
+ Stable tag: 1.8.8
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
194
 
195
  == Changelog ==
196
 
197
+ = 1.8.8 - 2018/05/26 =
198
+ * This maintenance update is for compatibility with WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU
199
+ * Tweak - Test for compatibility with WordPress 4.9.6
200
+ * Tweak - Check for any issues with GDPR compliance. None Found
201
+
202
  = 1.8.7 - 2018/03/24 =
203
  * Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
204
  * Tweak - Increase lazy load filter priority value so that lazy load is applied to images loaded by the shortcode function do_shortcode
381
 
382
  == Upgrade Notice ==
383
 
384
+ = 1.8.8 =
385
+ Maintenance Update. Compatibility WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU
386
+
387
  = 1.8.7 =
388
  Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
389