Version Description
- fix: carousel height could be too high in some cases
Download this release
Release Info
Developer | designemotions |
Plugin | Enjoy Instagram feed on website with WordPress Widget and Shortcode |
Version | 6.1.6 |
Comparing to | |
See all releases |
Code changes from version 6.1.5 to 6.1.6
- assets/css/carousel-theme.css +3 -0
- enjoyinstagram.php +2 -2
- readme.txt +4 -2
- templates/shortcodes/carousel.php +1 -1
assets/css/carousel-theme.css
CHANGED
@@ -81,3 +81,6 @@
|
|
81 |
background: #869791;
|
82 |
}
|
83 |
|
|
|
|
|
|
81 |
background: #869791;
|
82 |
}
|
83 |
|
84 |
+
.ei-carousel .swiper-slide img {
|
85 |
+
display: block;
|
86 |
+
}
|
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.6
|
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.6' );
|
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 |
|
@@ -210,6 +210,8 @@ In the Setting section yon can customize grid and/or Carousel view
|
|
210 |
8. Front End View Example
|
211 |
|
212 |
== Changelog ==
|
|
|
|
|
213 |
= 6.1.5 =
|
214 |
* fix: removed empty avatar image with non business ig account
|
215 |
= 6.1.4 =
|
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.6
|
8 |
+
Stable tag: 6.1.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
210 |
8. Front End View Example
|
211 |
|
212 |
== Changelog ==
|
213 |
+
= 6.1.6 =
|
214 |
+
* fix: carousel height could be too high in some cases
|
215 |
= 6.1.5 =
|
216 |
* fix: removed empty avatar image with non business ig account
|
217 |
= 6.1.4 =
|
templates/shortcodes/carousel.php
CHANGED
@@ -130,7 +130,7 @@ if ( isset( $settings['theme'] ) ) {
|
|
130 |
<?php endif; ?>
|
131 |
|
132 |
<div id="reload_enjoyinstagram_carousel_<?php echo $i; ?>">
|
133 |
-
<div id="ei-carousel-<?php echo $i; ?>" class="swiper-container <?php echo $theme; ?>">
|
134 |
|
135 |
<div class="swiper-wrapper">
|
136 |
<?php
|
130 |
<?php endif; ?>
|
131 |
|
132 |
<div id="reload_enjoyinstagram_carousel_<?php echo $i; ?>">
|
133 |
+
<div id="ei-carousel-<?php echo $i; ?>" class="ei-carousel swiper-container <?php echo $theme; ?>">
|
134 |
|
135 |
<div class="swiper-wrapper">
|
136 |
<?php
|