Skip to content

Commit 8a99f37

Browse files
committed
Release new version 2.3.3
= 2.3.3 – 2020/07/17 = * This maintenance release is compatibility with WordPress 5.4.2 and a bug fix for a conflict with the latest version 4.3 of WooCommerce * Tweak – Test for compatibility with WordPress 5.4.2 * Tweak – Test for compatibility with WooCommerce 4.3.0 * Fix - Support lazy load for WC Product Images
1 parent 944df80 commit 8a99f37

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ sudo: false
99

1010
cache:
1111
directories:
12-
- vendor
1312
- $HOME/.composer/cache
1413

1514
notifications:

a3-lazy-load.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
/*
33
Plugin Name: a3 Lazy Load
44
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.3.2
5+
Version: 2.3.3
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.9
9-
Tested up to: 5.4
9+
Tested up to: 5.4.2
1010
Text Domain: a3-lazy-load
1111
Domain Path: /languages
1212
WC requires at least: 2.0.0
13-
WC tested up to: 4.0
13+
WC tested up to: 4.3
1414
License: GPLv2 or later
1515
Copyright © 2011 a3 Revolution Software Development team
1616
a3 Revolution Software Development team
@@ -33,7 +33,7 @@
3333

3434
define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
3535
define( 'A3_LAZY_LOAD_PREFIX', 'a3_lazy_load_' );
36-
define( 'A3_LAZY_VERSION', '2.3.2' );
36+
define( 'A3_LAZY_VERSION', '2.3.3' );
3737
define( 'A3_LAZY_LOAD_G_FONTS', false );
3838

3939
use \A3Rev\LazyLoad\FrameWork;

classes/class-a3-lazy-load.php

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ function __construct() {
100100
if ( $a3_lazy_load_global_settings['a3l_apply_image_to_gravatars'] == true ) {
101101
add_filter( 'get_avatar', array( $this, 'filter_images' ), 200 );
102102
}
103+
add_filter( 'woocommerce_product_get_image', array( $this, 'filter_images' ), 200 );
103104
}
104105

105106
// Apply for Videos

readme.txt

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: a3 lazy load, Lazy Loading, image lazy load, lazyload
44
Requires at least: 4.9
5-
Tested up to: 5.4
6-
Stable tag: 2.3.2
5+
Tested up to: 5.4.2
6+
Stable tag: 2.3.3
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -204,6 +204,12 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
204204

205205
== Changelog ==
206206

207+
= 2.3.3 – 2020/07/17 =
208+
* This maintenance release is compatibility with WordPress 5.4.2 and a bug fix for a conflict with the latest version 4.3 of WooCommerce
209+
* Tweak – Test for compatibility with WordPress 5.4.2
210+
* Tweak – Test for compatibility with WooCommerce 4.3.0
211+
* Fix - Support lazy load for WC Product Images
212+
207213
= 2.3.2 - 2020/03/17 =
208214
* This maintenance release has compatibility for WordPress 5.4, WooCommerce 4.0, full compliance with WordPress PHP coding standards plus a typo fix.
209215
* Tweak - Test for compatibility with WordPress 5.4
@@ -494,6 +500,9 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
494500

495501
== Upgrade Notice ==
496502

503+
= 2.3.3 =
504+
This maintenance release is compatibility with WordPress 5.4.2 and a bug fix for a conflict with the latest version 4.3 of WooCommerce
505+
497506
= 2.3.2 =
498507
This maintenance release has compatibility for WordPress 5.4, WooCommerce 4.0, full compliance with WordPress PHP coding standards plus a typo fix.
499508

0 commit comments

Comments
 (0)