a3 Lazy Load - Version 2.2.2

Version Description

This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings

Download this release

Release Info

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

Code changes from version 2.2.1 to 2.2.2

a3-lazy-load.php CHANGED
@@ -2,7 +2,7 @@
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: 2.2.1
6
  Author: a3rev Software
7
  Author URI: https://a3rev.com/
8
  Requires at least: 4.9
@@ -33,7 +33,7 @@ define('A3_LAZY_LOAD_IMAGES_URL', A3_LAZY_LOAD_URL . '/assets/images');
33
 
34
  define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
35
  define( 'A3_LAZY_LOAD_PREFIX', 'a3_lazy_load_' );
36
- define( 'A3_LAZY_VERSION', '2.2.1' );
37
  define( 'A3_LAZY_LOAD_G_FONTS', false );
38
 
39
  use \A3Rev\LazyLoad\FrameWork;
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: 2.2.2
6
  Author: a3rev Software
7
  Author URI: https://a3rev.com/
8
  Requires at least: 4.9
33
 
34
  define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
35
  define( 'A3_LAZY_LOAD_PREFIX', 'a3_lazy_load_' );
36
+ define( 'A3_LAZY_VERSION', '2.2.2' );
37
  define( 'A3_LAZY_LOAD_G_FONTS', false );
38
 
39
  use \A3Rev\LazyLoad\FrameWork;
admin/settings/template-settings/global-settings.php CHANGED
@@ -329,7 +329,7 @@ class Global_Panel extends FrameWork\Admin_UI
329
  'name' => __( 'Exclude Images', 'a3-lazy-load' ),
330
  'type' => 'heading',
331
  'class' => 'a3l_apply_to_load_images_container',
332
- 'desc' => __( 'Images can be excluded from Lazy Load either by entering existing image classnames below or if the image has no classname by adding the <code>skip-lazy</code> class to the image, example <code>&#x3C;img class="skip-lazy"&#x3E;</code>', 'a3-lazy-load' )
333
  ),
334
  array(
335
  'name' => __( 'Skip Images Classes', 'a3-lazy-load' ),
@@ -399,7 +399,7 @@ class Global_Panel extends FrameWork\Admin_UI
399
  'name' => __( 'Exclude Videos / iframes', 'a3-lazy-load' ),
400
  'type' => 'heading',
401
  'class' => 'a3l_apply_to_load_videos_container',
402
- 'desc' => __( 'Videos and iFrames can be excluded from Lazy Load either by entering the existing classnames below or if if it has has no classname by adding the <code>skip-lazy</code> class to the video / iframe, example <code>&#x3C;video class="skip-lazy"&#x3E;</code>', 'a3-lazy-load' )
403
  ),
404
  array(
405
  'name' => __( 'Skip Videos Classes', 'a3-lazy-load' ),
329
  'name' => __( 'Exclude Images', 'a3-lazy-load' ),
330
  'type' => 'heading',
331
  'class' => 'a3l_apply_to_load_images_container',
332
+ 'desc' => __( 'Images can be excluded from Lazy Load by entering existing image classnames below or if the image has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the image. Examples, by class <code>&#x3C;img class="skip-lazy"&#x3E;</code> , by attribute <code>&#x3C;img data-skip-lazy&#x3E;</code>', 'a3-lazy-load' )
333
  ),
334
  array(
335
  'name' => __( 'Skip Images Classes', 'a3-lazy-load' ),
399
  'name' => __( 'Exclude Videos / iframes', 'a3-lazy-load' ),
400
  'type' => 'heading',
401
  'class' => 'a3l_apply_to_load_videos_container',
402
+ 'desc' => __( 'Videos and iFrames can be excluded from Lazy Load either by entering existing classnames below or if it has has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the video / iframe. Examples, by class <code>&#x3C;video class="skip-lazy"&#x3E;</code>, by attribute <code>&#x3C;video data-skip-lazy&#x3E;</code>', 'a3-lazy-load' )
403
  ),
404
  array(
405
  'name' => __( 'Skip Videos Classes', 'a3-lazy-load' ),
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: a3rev, a3rev Software, nguyencongtuan
3
  Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
4
  Requires at least: 4.9
5
  Tested up to: 5.3.2
6
- Stable tag: 2.2.1
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -155,12 +155,6 @@ Images, Videos / iframes can be excluded from Lazy Load by existing classnames o
155
  Exclude by classname <code>&#x3C;img class="skip-lazy"&#x3E; , &#x3C;video class="skip-lazy"&#x3E;</code>
156
  Exclude by attribute <code>&#x3C;img data-skip-lazy&#x3E; , &#x3C;video data-skip-lazy&#x3E;</code>
157
 
158
- <strong>the text changes for the Images option box</strong>
159
- Images can be excluded from Lazy Load by entering existing image classnames below or if the image has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the image. Examples, by class <code>&#x3C;img class="skip-lazy"&#x3E;</code> , by attribute <code>&#x3C;img data-skip-lazy&#x3E;</code>
160
-
161
- <strong>the Videos</strong>
162
- Videos and iFrames can be excluded from Lazy Load either by entering existing classnames below or if it has has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the video / iframe. Examples, by class <code>&#x3C;video class="skip-lazy"&#x3E;</code>, by attribute <code>&#x3C;video data-skip-lazy&#x3E;</code>
163
-
164
  = Why are some images, videos, objects not Lazy Loaded? =
165
 
166
  a3 Lazy Load can only be applied to objects that are added using core WordPress functions. If your theme or a plugin developer adds objects such as images or videos via a custom written function, a3 lazy Load cannot know what that custom function is and hence cannot Lazy Load the object.
@@ -212,6 +206,11 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
212
 
213
  == Changelog ==
214
 
 
 
 
 
 
215
  = 2.2.1 - 2020/01/16 =
216
  * This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
217
  * Tweak - Add support for lazy load exclusion by attribute 'data-skip-lazy'
@@ -476,6 +475,9 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
476
 
477
  == Upgrade Notice ==
478
 
 
 
 
479
  = 2.2.1 =
480
  This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
481
 
3
  Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
4
  Requires at least: 4.9
5
  Tested up to: 5.3.2
6
+ Stable tag: 2.2.2
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
155
  Exclude by classname <code>&#x3C;img class="skip-lazy"&#x3E; , &#x3C;video class="skip-lazy"&#x3E;</code>
156
  Exclude by attribute <code>&#x3C;img data-skip-lazy&#x3E; , &#x3C;video data-skip-lazy&#x3E;</code>
157
 
 
 
 
 
 
 
158
  = Why are some images, videos, objects not Lazy Loaded? =
159
 
160
  a3 Lazy Load can only be applied to objects that are added using core WordPress functions. If your theme or a plugin developer adds objects such as images or videos via a custom written function, a3 lazy Load cannot know what that custom function is and hence cannot Lazy Load the object.
206
 
207
  == Changelog ==
208
 
209
+ = 2.2.2 - 2020/01/18 =
210
+ * This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings
211
+ * Tweak - Update incorrect FQA help text on plugins description
212
+ * Tweak - Update admin panel option box image and video exclusion class and attribute help text.
213
+
214
  = 2.2.1 - 2020/01/16 =
215
  * This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
216
  * Tweak - Add support for lazy load exclusion by attribute 'data-skip-lazy'
475
 
476
  == Upgrade Notice ==
477
 
478
+ = 2.2.2 =
479
+ This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings
480
+
481
  = 2.2.1 =
482
  This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
483