Version Description
- Support for swedish specific characters.
=
Download this release
Release Info
Developer | mediabeta |
Plugin | Enjoy Instagram feed on website with WordPress Widget and Shortcode |
Version | 1.5.3 |
Comparing to | |
See all releases |
Code changes from version 1.5.2 to 1.5.3
enjoyinstagram.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Enjoy Instagram
|
4 |
Plugin URI: http://www.mediabeta.com/enjoy-instagram/
|
5 |
Description: Instagram Responsive Images Gallery and Carousel, works with Shortcodes and Widgets.
|
6 |
-
Version: 1.5.
|
7 |
Author: F. Prestipino, F. Di Pane - Mediabeta Srl
|
8 |
Author URI: http://www.mediabeta.com/team/
|
9 |
*/
|
3 |
Plugin Name: Enjoy Instagram
|
4 |
Plugin URI: http://www.mediabeta.com/enjoy-instagram/
|
5 |
Description: Instagram Responsive Images Gallery and Carousel, works with Shortcodes and Widgets.
|
6 |
+
Version: 1.5.3
|
7 |
Author: F. Prestipino, F. Di Pane - Mediabeta Srl
|
8 |
Author URI: http://www.mediabeta.com/team/
|
9 |
*/
|
images/Thumbs.db
ADDED
Binary file
|
library/autenticazione.php
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p style="font-size:14px;">Thank you for you
|
2 |
|
3 |
<p style="font-size:14px;">By using this plugin, you are agreeing to the <a href="http://instagram.com/about/legal/terms/api/" target="_blank">Instagram API Terms of Use</a>.</p>
|
4 |
|
1 |
+
<p style="font-size:14px;">Thank you for you choice! <strong>Enjoy Instagram - Responsive gallery</strong> is a plugin lovingly developed for you by <a href="http://www.mediabeta.com" target="_blank"> Mediabeta</a>.</p>
|
2 |
|
3 |
<p style="font-size:14px;">By using this plugin, you are agreeing to the <a href="http://instagram.com/about/legal/terms/api/" target="_blank">Instagram API Terms of Use</a>.</p>
|
4 |
|
library/enjoyinstagram_shortcode.php
CHANGED
@@ -47,9 +47,9 @@ jQuery("#owl-<?php echo $i; ?>").owlCarousel({
|
|
47 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
48 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
49 |
if(get_option('enjoyinstagram_user_or_hashtag')=='hashtag'){
|
50 |
-
$result = $instagram->getTagMedia(get_option('enjoyinstagram_hashtag'));
|
51 |
}else{
|
52 |
-
$result = $instagram->getUserMedia(get_option('enjoyinstagram_user_id'));
|
53 |
}
|
54 |
$pre_shortcode_content = "<div id=\"owl-".$i."\" class=\"owl-example\" style=\"display:none;\">";
|
55 |
|
47 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
48 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
49 |
if(get_option('enjoyinstagram_user_or_hashtag')=='hashtag'){
|
50 |
+
$result = $instagram->getTagMedia(urlencode(get_option('enjoyinstagram_hashtag')));
|
51 |
}else{
|
52 |
+
$result = $instagram->getUserMedia(urlencode(get_option('enjoyinstagram_user_id')));
|
53 |
}
|
54 |
$pre_shortcode_content = "<div id=\"owl-".$i."\" class=\"owl-example\" style=\"display:none;\">";
|
55 |
|
library/enjoyinstagram_shortcode_grid.php
CHANGED
@@ -7,9 +7,9 @@ if(get_option('enjoyinstagram_client_id') || get_option('enjoyinstagram_client_i
|
|
7 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
8 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
9 |
if(get_option('enjoyinstagram_user_or_hashtag')=='hashtag'){
|
10 |
-
$result = $instagram->getTagMedia(get_option('enjoyinstagram_hashtag'));
|
11 |
}else{
|
12 |
-
$result = $instagram->getUserMedia(get_option('enjoyinstagram_user_id'));
|
13 |
}
|
14 |
|
15 |
$pre_shortcode_content = "<div id=\"grid-".$i."\" class=\"ri-grid ri-grid-size-2 ri-shadow\" style=\"display:none;\"><ul>";
|
7 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
8 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
9 |
if(get_option('enjoyinstagram_user_or_hashtag')=='hashtag'){
|
10 |
+
$result = $instagram->getTagMedia(urlencode(get_option('enjoyinstagram_hashtag')));
|
11 |
}else{
|
12 |
+
$result = $instagram->getUserMedia(urlencode(get_option('enjoyinstagram_user_id')));
|
13 |
}
|
14 |
|
15 |
$pre_shortcode_content = "<div id=\"grid-".$i."\" class=\"ri-grid ri-grid-size-2 ri-shadow\" style=\"display:none;\"><ul>";
|
library/enjoyinstagram_shortcode_grid_widget.php
CHANGED
@@ -11,9 +11,9 @@ if(get_option('enjoyinstagram_client_id') || get_option('enjoyinstagram_client_i
|
|
11 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
12 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
13 |
if("{$u_or_h}"=='hashtag'){
|
14 |
-
$result = $instagram->getTagMedia(get_option('enjoyinstagram_hashtag'));
|
15 |
}else{
|
16 |
-
$result = $instagram->getUserMedia(get_option('enjoyinstagram_user_id'));
|
17 |
}
|
18 |
?>
|
19 |
<div id="rigrid-<?php echo "{$id}"; ?>" class="ri-grid ri-grid-size-2 ri-shadow" style="display:none">
|
11 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
12 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
13 |
if("{$u_or_h}"=='hashtag'){
|
14 |
+
$result = $instagram->getTagMedia(urlencode(get_option('enjoyinstagram_hashtag')));
|
15 |
}else{
|
16 |
+
$result = $instagram->getUserMedia(urlencode(get_option('enjoyinstagram_user_id')));
|
17 |
}
|
18 |
?>
|
19 |
<div id="rigrid-<?php echo "{$id}"; ?>" class="ri-grid ri-grid-size-2 ri-shadow" style="display:none">
|
library/enjoyinstagram_shortcode_widget.php
CHANGED
@@ -40,9 +40,9 @@ jQuery("#owl-<?php echo "{$id}"; ?>").owlCarousel({
|
|
40 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
41 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
42 |
if("{$u_or_h}"=='hashtag'){
|
43 |
-
$result = $instagram->getTagMedia(get_option('enjoyinstagram_hashtag'));
|
44 |
}else{
|
45 |
-
$result = $instagram->getUserMedia(get_option('enjoyinstagram_user_id'));
|
46 |
}
|
47 |
?>
|
48 |
<div id="owl-<?php echo "{$id}"; ?>" class="owl-example">
|
40 |
$instagram = new Enjoy_Instagram(get_option('enjoyinstagram_client_id'));
|
41 |
$instagram->setAccessToken(get_option('enjoyinstagram_access_token'));
|
42 |
if("{$u_or_h}"=='hashtag'){
|
43 |
+
$result = $instagram->getTagMedia(urlencode(get_option('enjoyinstagram_hashtag')));
|
44 |
}else{
|
45 |
+
$result = $instagram->getUserMedia(urlencode(get_option('enjoyinstagram_user_id')));
|
46 |
}
|
47 |
?>
|
48 |
<div id="owl-<?php echo "{$id}"; ?>" class="owl-example">
|
readme.txt
CHANGED
@@ -3,9 +3,9 @@ Contributors: (mediabeta, frafra85, fabiodipa)
|
|
3 |
Donate link: http://www.mediabeta.com/enjoy-instagram/
|
4 |
Tags: Instagram plugin, Instagram, Instagram gallery, Instagram images, Lightbox Instagram,Grid Instagram view, Instagram responsive, Instagram touch, Instagram photos,Instagram posts, Instagram page, Instagram widgets
|
5 |
Requires at least: 3.0.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Version: 1.5.
|
8 |
-
Stable tag: 1.5.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -107,6 +107,9 @@ Repeat Step 01 and Step 02 again.
|
|
107 |
* Bugs Fix
|
108 |
= 1.5.2 =
|
109 |
* Bug for utf8 4-byte (mobile emoticon) Fixed
|
|
|
|
|
|
|
110 |
== Upgrade Notice ==
|
111 |
|
112 |
= 1.0 =
|
@@ -126,4 +129,6 @@ Repeat Step 01 and Step 02 again.
|
|
126 |
= 1.5.1 =
|
127 |
* Bugs Fix
|
128 |
= 1.5.2 =
|
129 |
-
* Bug for utf8 4-byte (mobile emoticon) Fixed
|
|
|
|
3 |
Donate link: http://www.mediabeta.com/enjoy-instagram/
|
4 |
Tags: Instagram plugin, Instagram, Instagram gallery, Instagram images, Lightbox Instagram,Grid Instagram view, Instagram responsive, Instagram touch, Instagram photos,Instagram posts, Instagram page, Instagram widgets
|
5 |
Requires at least: 3.0.1
|
6 |
+
Tested up to: 4.1.1
|
7 |
+
Version: 1.5.3
|
8 |
+
Stable tag: 1.5.3
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
107 |
* Bugs Fix
|
108 |
= 1.5.2 =
|
109 |
* Bug for utf8 4-byte (mobile emoticon) Fixed
|
110 |
+
= 1.5.3 =
|
111 |
+
* Support for swedish specific characters.
|
112 |
+
|
113 |
== Upgrade Notice ==
|
114 |
|
115 |
= 1.0 =
|
129 |
= 1.5.1 =
|
130 |
* Bugs Fix
|
131 |
= 1.5.2 =
|
132 |
+
* Bug for utf8 4-byte (mobile emoticon) Fixed
|
133 |
+
= 1.5.3 =
|
134 |
+
* Support for swedish specific characters.
|