Version Description
- fix: heart icon dimension in lightbox
Download this release
Release Info
Developer | designemotions |
Plugin | Enjoy Instagram feed on website with WordPress Widget and Shortcode |
Version | 6.1.4 |
Comparing to | |
See all releases |
Code changes from version 6.1.3 to 6.1.4
assets/css/enjoy-instagram.css
CHANGED
@@ -160,6 +160,8 @@ Edited by: Vito Caruso */
|
|
160 |
color: #666;
|
161 |
}
|
162 |
|
|
|
|
|
163 |
|
164 |
@media only screen and (max-width: 600px) {
|
165 |
.fancybox-caption {
|
160 |
color: #666;
|
161 |
}
|
162 |
|
163 |
+
/* ----------------------------- */
|
164 |
+
|
165 |
|
166 |
@media only screen and (max-width: 600px) {
|
167 |
.fancybox-caption {
|
enjoyinstagram.php
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
* Plugin Name: Enjoy Instagram
|
12 |
* Plugin URI: https://www.mediabetaprojects.com/enjoy-instagram-premium/
|
13 |
* Description: Instagram Responsive Images Gallery and Carousel, works with Shortcodes and Widgets.
|
14 |
-
* Version: 6.1.
|
15 |
* Requires at least: 4.0
|
16 |
* Requires PHP: 7.2
|
17 |
* Author: Mediabeta Srl
|
@@ -59,7 +59,7 @@ if ( ! function_exists( 'eiirigac_fs' ) ) {
|
|
59 |
do_action( 'eiirigac_fs_loaded' );
|
60 |
}
|
61 |
|
62 |
-
! defined( 'ENJOYINSTAGRAM_VERSION' ) && define( 'ENJOYINSTAGRAM_VERSION', '6.1.
|
63 |
! defined( 'ENJOYINSTAGRAM_FILE' ) && define( 'ENJOYINSTAGRAM_FILE', __FILE__ );
|
64 |
! defined( 'ENJOYINSTAGRAM_URL' ) && define( 'ENJOYINSTAGRAM_URL', plugin_dir_url( __FILE__ ) );
|
65 |
! defined( 'ENJOYINSTAGRAM_DIR' ) && define( 'ENJOYINSTAGRAM_DIR', plugin_dir_path( __FILE__ ) );
|
11 |
* Plugin Name: Enjoy Instagram
|
12 |
* Plugin URI: https://www.mediabetaprojects.com/enjoy-instagram-premium/
|
13 |
* Description: Instagram Responsive Images Gallery and Carousel, works with Shortcodes and Widgets.
|
14 |
+
* Version: 6.1.4
|
15 |
* Requires at least: 4.0
|
16 |
* Requires PHP: 7.2
|
17 |
* Author: Mediabeta Srl
|
59 |
do_action( 'eiirigac_fs_loaded' );
|
60 |
}
|
61 |
|
62 |
+
! defined( 'ENJOYINSTAGRAM_VERSION' ) && define( 'ENJOYINSTAGRAM_VERSION', '6.1.4' );
|
63 |
! defined( 'ENJOYINSTAGRAM_FILE' ) && define( 'ENJOYINSTAGRAM_FILE', __FILE__ );
|
64 |
! defined( 'ENJOYINSTAGRAM_URL' ) && define( 'ENJOYINSTAGRAM_URL', plugin_dir_url( __FILE__ ) );
|
65 |
! defined( 'ENJOYINSTAGRAM_DIR' ) && define( 'ENJOYINSTAGRAM_DIR', plugin_dir_path( __FILE__ ) );
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.google.com/url?q=https%3A%2F%2Fwww.paypal.com%2Fcgi-bin
|
|
4 |
Tags: instagram carousel, instagram, instagram feed, instagram widget, instagram grid
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.7
|
7 |
-
Version: 6.1.
|
8 |
-
Stable tag: 6.1.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -209,7 +209,9 @@ In the Setting section yon can customize grid and/or Carousel view
|
|
209 |
7. Front End View Example
|
210 |
8. Front End View Example
|
211 |
|
212 |
-
== Changelog ==
|
|
|
|
|
213 |
= 6.1.3 =
|
214 |
* fix: text color prev and next buttons on the carousel
|
215 |
= 6.1.2 =
|
4 |
Tags: instagram carousel, instagram, instagram feed, instagram widget, instagram grid
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.7
|
7 |
+
Version: 6.1.4
|
8 |
+
Stable tag: 6.1.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
209 |
7. Front End View Example
|
210 |
8. Front End View Example
|
211 |
|
212 |
+
== Changelog ==
|
213 |
+
= 6.1.4 =
|
214 |
+
* fix: heart icon dimension in lightbox
|
215 |
= 6.1.3 =
|
216 |
* fix: text color prev and next buttons on the carousel
|
217 |
= 6.1.2 =
|
templates/shortcodes/lightbox-styles/igvertical.php
CHANGED
@@ -43,7 +43,7 @@
|
|
43 |
</div>
|
44 |
|
45 |
<div class="likes_count">
|
46 |
-
<img alt="" src="<?php echo ENJOYINSTAGRAM_ASSETS_URL; ?>/images/heart-regular.svg" style="width:
|
47 |
<?php echo $entry['likes']['count']; ?>
|
48 |
</div>
|
49 |
</div>
|
43 |
</div>
|
44 |
|
45 |
<div class="likes_count">
|
46 |
+
<img alt="" src="<?php echo ENJOYINSTAGRAM_ASSETS_URL; ?>/images/heart-regular.svg" style="width:24px; height:24px">
|
47 |
<?php echo $entry['likes']['count']; ?>
|
48 |
</div>
|
49 |
</div>
|