Version Description
- Updated max image captured from 20 to 40.
- Fix: different height of the images in the carousel which could occur in some circumstances.
Download this release
Release Info
Developer | designemotions |
Plugin | Enjoy Instagram feed on website with WordPress Widget and Shortcode |
Version | 6.0.1 |
Comparing to | |
See all releases |
Code changes from version 6.0.0 to 6.0.1
- enjoyinstagram.php +2 -2
- includes/class.enjoyinstagram.php +1 -1
- plugin-options/options.php +1 -1
- readme.txt +5 -2
- templates/shortcodes/carousel.php +3 -3
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.0.
|
15 |
* Requires at least: 4.0
|
16 |
* Requires PHP: 7.2
|
17 |
* Author: Mediabeta Srl
|
@@ -22,7 +22,7 @@
|
|
22 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
23 |
*/
|
24 |
|
25 |
-
! defined( 'ENJOYINSTAGRAM_VERSION' ) && define( 'ENJOYINSTAGRAM_VERSION', '6.0.
|
26 |
! defined( 'ENJOYINSTAGRAM_FILE' ) && define( 'ENJOYINSTAGRAM_FILE', __FILE__ );
|
27 |
! defined( 'ENJOYINSTAGRAM_URL' ) && define( 'ENJOYINSTAGRAM_URL', plugin_dir_url( __FILE__ ) );
|
28 |
! 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.0.1
|
15 |
* Requires at least: 4.0
|
16 |
* Requires PHP: 7.2
|
17 |
* Author: Mediabeta Srl
|
22 |
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
23 |
*/
|
24 |
|
25 |
+
! defined( 'ENJOYINSTAGRAM_VERSION' ) && define( 'ENJOYINSTAGRAM_VERSION', '6.0.1' );
|
26 |
! defined( 'ENJOYINSTAGRAM_FILE' ) && define( 'ENJOYINSTAGRAM_FILE', __FILE__ );
|
27 |
! defined( 'ENJOYINSTAGRAM_URL' ) && define( 'ENJOYINSTAGRAM_URL', plugin_dir_url( __FILE__ ) );
|
28 |
! defined( 'ENJOYINSTAGRAM_DIR' ) && define( 'ENJOYINSTAGRAM_DIR', plugin_dir_path( __FILE__ ) );
|
includes/class.enjoyinstagram.php
CHANGED
@@ -341,7 +341,7 @@ final class EnjoyInstagram {
|
|
341 |
*/
|
342 |
public function force_image_captured( $val ) {
|
343 |
if ( ! $this->is_premium() ) {
|
344 |
-
return '
|
345 |
}
|
346 |
|
347 |
return $val;
|
341 |
*/
|
342 |
public function force_image_captured( $val ) {
|
343 |
if ( ! $this->is_premium() ) {
|
344 |
+
return '40';
|
345 |
}
|
346 |
|
347 |
return $val;
|
plugin-options/options.php
CHANGED
@@ -9,7 +9,7 @@ return apply_filters(
|
|
9 |
[
|
10 |
'enjoyinstagram_options_default_group' => [
|
11 |
'enjoyinstagram_code_opt' => 'true',
|
12 |
-
'enjoyinstagram_images_captured' => '
|
13 |
'enjoyinstagram_hashtag_popup_moderate' => '',
|
14 |
'enjoyinstagram_lightbox_caption_default' => 'yes',
|
15 |
'enjoyinstagram_lightbox_style_default' => 'default',
|
9 |
[
|
10 |
'enjoyinstagram_options_default_group' => [
|
11 |
'enjoyinstagram_code_opt' => 'true',
|
12 |
+
'enjoyinstagram_images_captured' => '40',
|
13 |
'enjoyinstagram_hashtag_popup_moderate' => '',
|
14 |
'enjoyinstagram_lightbox_caption_default' => 'yes',
|
15 |
'enjoyinstagram_lightbox_style_default' => 'default',
|
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.6
|
7 |
-
Version: 6.0.
|
8 |
-
Stable tag: 6.0.
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -210,6 +210,9 @@ In the Setting section yon can customize grid and/or Carousel view
|
|
210 |
8. Front End View Example
|
211 |
|
212 |
== Changelog ==
|
|
|
|
|
|
|
213 |
= 6.0.0 =
|
214 |
Note: The premium version can be activated by purchasing the new addon plugin and it will no longer be necessary to deactivate the free version.
|
215 |
* Added new carousel library
|
4 |
Tags: instagram carousel, instagram, instagram feed, instagram widget, instagram grid
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 5.6
|
7 |
+
Version: 6.0.1
|
8 |
+
Stable tag: 6.0.1
|
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.0.1 =
|
214 |
+
* Updated max image captured from 20 to 40.
|
215 |
+
* Fix: different height of the images in the carousel which could occur in some circumstances.
|
216 |
= 6.0.0 =
|
217 |
Note: The premium version can be activated by purchasing the new addon plugin and it will no longer be necessary to deactivate the free version.
|
218 |
* Added new carousel library
|
templates/shortcodes/carousel.php
CHANGED
@@ -218,7 +218,7 @@ if ( isset( $settings['theme'] ) ) {
|
|
218 |
title="<?php echo $entry['caption']['text']; ?>" target="_blank"
|
219 |
href="<?php echo $entry['link']; ?>" <?php echo $link_style; ?>>
|
220 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
221 |
-
style="opacity: 0;">
|
222 |
</a>
|
223 |
<?php
|
224 |
break;
|
@@ -226,7 +226,7 @@ if ( isset( $settings['theme'] ) ) {
|
|
226 |
?>
|
227 |
<a <?php echo $link_style; ?>>
|
228 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
229 |
-
style="opacity: 0;">
|
230 |
</a>
|
231 |
<?php
|
232 |
break;
|
@@ -239,7 +239,7 @@ if ( isset( $settings['theme'] ) ) {
|
|
239 |
title="<?php echo $entry['caption']['text']; ?>" target="_blank"
|
240 |
href="<?php echo esc_url( $settings['link_altro'] ); ?>" <?php echo $link_style; ?>>
|
241 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
242 |
-
style="opacity: 0;">
|
243 |
</a>
|
244 |
<?php
|
245 |
break;
|
218 |
title="<?php echo $entry['caption']['text']; ?>" target="_blank"
|
219 |
href="<?php echo $entry['link']; ?>" <?php echo $link_style; ?>>
|
220 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
221 |
+
class="ig-img" style="opacity: 0;">
|
222 |
</a>
|
223 |
<?php
|
224 |
break;
|
226 |
?>
|
227 |
<a <?php echo $link_style; ?>>
|
228 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
229 |
+
class="ig-img" style="opacity: 0;">
|
230 |
</a>
|
231 |
<?php
|
232 |
break;
|
239 |
title="<?php echo $entry['caption']['text']; ?>" target="_blank"
|
240 |
href="<?php echo esc_url( $settings['link_altro'] ); ?>" <?php echo $link_style; ?>>
|
241 |
<img alt="<?php echo $entry['caption']['text']; ?>" src="<?php echo $square_thumbnail; ?>"
|
242 |
+
class="ig-img" style="opacity: 0;">
|
243 |
</a>
|
244 |
<?php
|
245 |
break;
|