Version Description
- 08/12/2020
- Test with WordPress 5.5, WooCommerce 4.4 and jQuery 3.5.1
- Show warning for Additional Variation Images Gallery plugin
Download this release
Release Info
Developer | diana_burduja |
Plugin | WP Image Zoom |
Version | 1.43 |
Comparing to | |
See all releases |
Code changes from version 1.42 to 1.43
- image-zoooom.php +3 -3
- includes/admin-side.php +11 -2
- readme.txt +6 -1
image-zoooom.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: WP Image Zoom
|
4 |
* Plugin URI: https://wordpress.org/plugins/wp-image-zoooom/
|
5 |
* Description: Add zoom effect over the an image, whether it is an image in a post/page or the featured image of a product in a WooCommerce shop
|
6 |
-
* Version: 1.
|
7 |
* Author: SilkyPress
|
8 |
* Author URI: https://www.silkypress.com
|
9 |
* License: GPL2
|
@@ -12,7 +12,7 @@
|
|
12 |
* Domain Path: /languages/
|
13 |
*
|
14 |
* WC requires at least: 2.3.0
|
15 |
-
* WC tested up to: 4.
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -26,7 +26,7 @@ if ( ! class_exists( 'ImageZoooom' ) ) :
|
|
26 |
* @class ImageZoooom
|
27 |
*/
|
28 |
final class ImageZoooom {
|
29 |
-
public $version = '1.
|
30 |
public $theme = '';
|
31 |
protected static $_instance = null;
|
32 |
|
3 |
* Plugin Name: WP Image Zoom
|
4 |
* Plugin URI: https://wordpress.org/plugins/wp-image-zoooom/
|
5 |
* Description: Add zoom effect over the an image, whether it is an image in a post/page or the featured image of a product in a WooCommerce shop
|
6 |
+
* Version: 1.43
|
7 |
* Author: SilkyPress
|
8 |
* Author URI: https://www.silkypress.com
|
9 |
* License: GPL2
|
12 |
* Domain Path: /languages/
|
13 |
*
|
14 |
* WC requires at least: 2.3.0
|
15 |
+
* WC tested up to: 4.4
|
16 |
*/
|
17 |
|
18 |
if ( ! defined( 'ABSPATH' ) ) {
|
26 |
* @class ImageZoooom
|
27 |
*/
|
28 |
final class ImageZoooom {
|
29 |
+
public $version = '1.43';
|
30 |
public $theme = '';
|
31 |
protected static $_instance = null;
|
32 |
|
includes/admin-side.php
CHANGED
@@ -151,7 +151,7 @@ class ImageZoooom_Admin {
|
|
151 |
}
|
152 |
|
153 |
// Premium tooltips.
|
154 |
-
$message = __( 'Only available in <a href="%1$s" target="_blank">PRO version</a>', 'wp-
|
155 |
$message = wp_kses(
|
156 |
$message,
|
157 |
array(
|
@@ -161,7 +161,7 @@ class ImageZoooom_Admin {
|
|
161 |
),
|
162 |
)
|
163 |
);
|
164 |
-
$message = sprintf( $message, 'https://www.silkypress.com/
|
165 |
new SilkyPress_PremiumTooltips( $message );
|
166 |
|
167 |
$messages = $form->render_messages();
|
@@ -340,6 +340,15 @@ class ImageZoooom_Admin {
|
|
340 |
$w->add_notice( 'iz_dismiss_smart_image_resize', $message );
|
341 |
}
|
342 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
343 |
$w->show_warnings();
|
344 |
}
|
345 |
|
151 |
}
|
152 |
|
153 |
// Premium tooltips.
|
154 |
+
$message = __( 'Only available in <a href="%1$s" target="_blank">PRO version</a>', 'wp-image-zoooom' );
|
155 |
$message = wp_kses(
|
156 |
$message,
|
157 |
array(
|
161 |
),
|
162 |
)
|
163 |
);
|
164 |
+
$message = sprintf( $message, 'https://www.silkypress.com/wp-image-zoom-plugin/?utm_source=wordpress&utm_campaign=wmsc_free&utm_medium=banner' );
|
165 |
new SilkyPress_PremiumTooltips( $message );
|
166 |
|
167 |
$messages = $form->render_messages();
|
340 |
$w->add_notice( 'iz_dismiss_smart_image_resize', $message );
|
341 |
}
|
342 |
|
343 |
+
// Warning about Additional Variation Images Gallery for WooCommerce plugin.
|
344 |
+
if ( is_plugin_active( 'woo-variation-gallery/woo-variation-gallery.php' ) && $w->is_url( 'zoooom_settings' ) ) {
|
345 |
+
$slick_url = 'http://kenwheeler.github.io/slick/';
|
346 |
+
$variation_plugin_url = 'https://wordpress.org/plugins/woo-variation-gallery/';
|
347 |
+
$pro_url = 'https://www.silkypress.com/wp-image-zoom-plugin/?utm_source=wordpress&utm_campaign=iz_free&utm_medium=banner';
|
348 |
+
$message = sprintf( __( 'The <a href="%1$s">Additional Variation Images Gallery for WooCommerce</a> plugin replaces the default WooCommerce gallery with a <a href="%2$s">Slick carousel</a> gallery. Unfortunately the <b>WP Image Zoom</b> plugin will not work with the <b>Slick carousel</b> gallery. You can try the zoom plugin with the default WooCommerce gallery by deactivating the <b>Additional Variation Images Gallery for WooCommerce</b> plugin. Alternatively, you can upgrade to the <a href="%3$s">WP Image Zoom Pro</a> version, which is compatible with the <b>Slick carousel</b> gallery, therefore compatible with the <b>Additional Variation Images Gallery for WooCommerce</b> plugin.' ), $variation_plugin_url, $slick_url, $pro_url );
|
349 |
+
$w->add_notice( 'iz_dismiss_woo_variation', $message );
|
350 |
+
}
|
351 |
+
|
352 |
$w->show_warnings();
|
353 |
}
|
354 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Email: diana@burduja.eu
|
|
5 |
Tags: e-commerce, featured image, hover over image zoom, image, image zoom, image zoom plugin, image magnification, image magnifier, jquery picture zoom, magnifier, magnify image, magnifying glass, mouse over image zoom, panorama, picture zoom, product image, product zoom, product magnification, product magnifier, responsive, woocommerce product zoom, woocommerce zoom, woocommerce magnifying glass, zoom, zoom image, zoom plugin, woocommerce image zoom, woocommerce product image zoom, woocommerce zoom magnifier
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.5
|
8 |
-
Stable tag: 1.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
@@ -154,6 +154,11 @@ Alternatively you can upgrade to the Pro version, as there the zoom lens is buil
|
|
154 |
|
155 |
== Changelog ==
|
156 |
|
|
|
|
|
|
|
|
|
|
|
157 |
= 1.42 =
|
158 |
* 07/10/2020
|
159 |
* Fix: remove PHP warning
|
5 |
Tags: e-commerce, featured image, hover over image zoom, image, image zoom, image zoom plugin, image magnification, image magnifier, jquery picture zoom, magnifier, magnify image, magnifying glass, mouse over image zoom, panorama, picture zoom, product image, product zoom, product magnification, product magnifier, responsive, woocommerce product zoom, woocommerce zoom, woocommerce magnifying glass, zoom, zoom image, zoom plugin, woocommerce image zoom, woocommerce product image zoom, woocommerce zoom magnifier
|
6 |
Requires at least: 3.0.1
|
7 |
Tested up to: 5.5
|
8 |
+
Stable tag: 1.43
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
11 |
Requires PHP: 5.2.4
|
154 |
|
155 |
== Changelog ==
|
156 |
|
157 |
+
= 1.43 =
|
158 |
+
* 08/12/2020
|
159 |
+
* Test with WordPress 5.5, WooCommerce 4.4 and jQuery 3.5.1
|
160 |
+
* Show warning for Additional Variation Images Gallery plugin
|
161 |
+
|
162 |
= 1.42 =
|
163 |
* 07/10/2020
|
164 |
* Fix: remove PHP warning
|