Version Description
Download this release
Release Info
Developer | yithemes |
Plugin | YITH WooCommerce Zoom Magnifier |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0.0 to 2.0.1
- init.php +3 -3
- languages/yith-woocommerce-zoom-magnifier.pot +2 -2
- lib/class.yith-wcmg-frontend.php +2 -0
- readme.txt +5 -0
init.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: YITH WooCommerce Product Gallery & Image Zoom
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-zoom-magnifier/
|
5 |
* Description: <code><strong>YITH WooCommerce Product Gallery & Image Zoom</strong></code> allows you to add a zoom effect to product images and a thumbnail slider for the product image gallery. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
-
* Version: 2.0.
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-zoom-magnifier
|
@@ -78,8 +78,8 @@ register_activation_hook ( __FILE__, 'yith_plugin_registration_hook' );
|
|
78 |
|
79 |
defined ( 'YITH_YWZM_FREE_INIT' ) || define ( 'YITH_YWZM_FREE_INIT', plugin_basename ( __FILE__ ) );
|
80 |
defined ( 'YITH_YWZM_SLUG' ) || define ( 'YITH_YWZM_SLUG', 'yith-woocommerce-zoom-magnifier' );
|
81 |
-
defined ( 'YITH_YWZM_VERSION' ) || define ( 'YITH_YWZM_VERSION', '2.0.
|
82 |
-
defined ( 'YITH_YWZM_SCRIPT_VERSION' ) || define ( 'YITH_YWZM_SCRIPT_VERSION', '2.0.
|
83 |
|
84 |
defined ( 'YITH_YWZM_FILE' ) || define ( 'YITH_YWZM_FILE', __FILE__ );
|
85 |
defined ( 'YITH_YWZM_DIR' ) || define ( 'YITH_YWZM_DIR', plugin_dir_path ( __FILE__ ) );
|
3 |
* Plugin Name: YITH WooCommerce Product Gallery & Image Zoom
|
4 |
* Plugin URI: https://yithemes.com/themes/plugins/yith-woocommerce-zoom-magnifier/
|
5 |
* Description: <code><strong>YITH WooCommerce Product Gallery & Image Zoom</strong></code> allows you to add a zoom effect to product images and a thumbnail slider for the product image gallery. <a href="https://yithemes.com/" target="_blank">Get more plugins for your e-commerce shop on <strong>YITH</strong></a>.
|
6 |
+
* Version: 2.0.1
|
7 |
* Author: YITH
|
8 |
* Author URI: https://yithemes.com/
|
9 |
* Text Domain: yith-woocommerce-zoom-magnifier
|
78 |
|
79 |
defined ( 'YITH_YWZM_FREE_INIT' ) || define ( 'YITH_YWZM_FREE_INIT', plugin_basename ( __FILE__ ) );
|
80 |
defined ( 'YITH_YWZM_SLUG' ) || define ( 'YITH_YWZM_SLUG', 'yith-woocommerce-zoom-magnifier' );
|
81 |
+
defined ( 'YITH_YWZM_VERSION' ) || define ( 'YITH_YWZM_VERSION', '2.0.1' );
|
82 |
+
defined ( 'YITH_YWZM_SCRIPT_VERSION' ) || define ( 'YITH_YWZM_SCRIPT_VERSION', '2.0.1' );
|
83 |
|
84 |
defined ( 'YITH_YWZM_FILE' ) || define ( 'YITH_YWZM_FILE', __FILE__ );
|
85 |
defined ( 'YITH_YWZM_DIR' ) || define ( 'YITH_YWZM_DIR', plugin_dir_path ( __FILE__ ) );
|
languages/yith-woocommerce-zoom-magnifier.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Product Gallery & Image Zoom package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: YITH WooCommerce Product Gallery & Image Zoom 2.0.
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
-
"POT-Creation-Date: 2021-09-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the YITH WooCommerce Product Gallery & Image Zoom package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: YITH WooCommerce Product Gallery & Image Zoom 2.0.1\n"
|
6 |
"Report-Msgid-Bugs-To: YITH <plugins@yithemes.com>\n"
|
7 |
+
"POT-Creation-Date: 2021-09-18 13:50:19+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
lib/class.yith-wcmg-frontend.php
CHANGED
@@ -146,6 +146,8 @@ if ( ! class_exists( 'YITH_WCMG_Frontend' ) ) {
|
|
146 |
wp_enqueue_script( 'ywzm-magnifier' );
|
147 |
wp_enqueue_script( 'ywzm_frontend' );
|
148 |
|
|
|
|
|
149 |
/**
|
150 |
* Add custom init PrettyPhoto
|
151 |
*/
|
146 |
wp_enqueue_script( 'ywzm-magnifier' );
|
147 |
wp_enqueue_script( 'ywzm_frontend' );
|
148 |
|
149 |
+
wp_enqueue_style( 'dashicons' );
|
150 |
+
|
151 |
/**
|
152 |
* Add custom init PrettyPhoto
|
153 |
*/
|
readme.txt
CHANGED
@@ -70,9 +70,14 @@ YITH WooCommerce Product Gallery & Image Zoom will add a new tab called "Product
|
|
70 |
4. The zoom applied to a product image, showing zoomed image on the right side.
|
71 |
5. The zoom applied to a product image, showing zoomed image over the same image.
|
72 |
6. The product image displayed in the plugin lightbox.
|
|
|
73 |
|
74 |
== Changelog ==
|
75 |
|
|
|
|
|
|
|
|
|
76 |
= Version 2.0.0 - Released: September 17, 2021 =
|
77 |
|
78 |
* New: Improved the plugin UI & UX
|
70 |
4. The zoom applied to a product image, showing zoomed image on the right side.
|
71 |
5. The zoom applied to a product image, showing zoomed image over the same image.
|
72 |
6. The product image displayed in the plugin lightbox.
|
73 |
+
7. The slider and arrows in the thumbnails gallery.
|
74 |
|
75 |
== Changelog ==
|
76 |
|
77 |
+
= Version 2.0.1 - Released: September 18, 2021 =
|
78 |
+
|
79 |
+
Dev: enqueue Dashicons styles
|
80 |
+
|
81 |
= Version 2.0.0 - Released: September 17, 2021 =
|
82 |
|
83 |
* New: Improved the plugin UI & UX
|