Instagram Feed - Version 1.3.7

Version Description

  • Fix: Fixed an issue with double quotes in photo captions (used in the photo alt tags) which caused a formatting issue
Download this release

Release Info

Developer smashballoon
Plugin Icon 128x128 Instagram Feed
Version 1.3.7
Comparing to
See all releases

Code changes from version 1.3.6 to 1.3.7

README.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: smashballoon
3
  Tags: Instagram, Instagram feed, Instagram photos, Instagram plugin, Instagram stream, Custom Instagram Feed, responsive Instagram, mobile Instagram, Instagram posts, Instagram wall, Instagram account
4
  Requires at least: 3.0
5
- Tested up to: 4.1
6
- Stable tag: 1.3.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -186,6 +186,9 @@ For more FAQs related to the Instagram Feed plugin please visit the [FAQ section
186
  7. The Instagram Feed plugin Settings pages
187
 
188
  == Changelog ==
 
 
 
189
  = 1.3.6 =
190
  * Fix: Fixed an issue introduced in version 1.3.4 which was causing theme settings to not be applied in some themes
191
 
2
  Contributors: smashballoon
3
  Tags: Instagram, Instagram feed, Instagram photos, Instagram plugin, Instagram stream, Custom Instagram Feed, responsive Instagram, mobile Instagram, Instagram posts, Instagram wall, Instagram account
4
  Requires at least: 3.0
5
+ Tested up to: 4.3
6
+ Stable tag: 1.3.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
186
  7. The Instagram Feed plugin Settings pages
187
 
188
  == Changelog ==
189
+ = 1.3.7 =
190
+ * Fix: Fixed an issue with double quotes in photo captions (used in the photo alt tags) which caused a formatting issue
191
+
192
  = 1.3.6 =
193
  * Fix: Fixed an issue introduced in version 1.3.4 which was causing theme settings to not be applied in some themes
194
 
css/sb-instagram.css CHANGED
@@ -219,7 +219,8 @@
219
  #sb_instagram .sb_instagram_header a{
220
  text-decoration: none;
221
  }
222
- #sb_instagram .sbi_header_text *{
 
223
  float: left;
224
  clear: both;
225
  width: auto;
@@ -237,6 +238,9 @@
237
  #sb_instagram .sb_instagram_header h3.sbi_no_bio{
238
  padding-top: 9px !important;
239
  }
 
 
 
240
 
241
 
242
  /* Buttons */
219
  #sb_instagram .sb_instagram_header a{
220
  text-decoration: none;
221
  }
222
+ #sb_instagram .sbi_header_text .sbi_bio,
223
+ #sb_instagram .sbi_header_text h3{
224
  float: left;
225
  clear: both;
226
  width: auto;
238
  #sb_instagram .sb_instagram_header h3.sbi_no_bio{
239
  padding-top: 9px !important;
240
  }
241
+ #sb_instagram .sbi_header_text img.emoji{
242
+ margin-right: 3px !important;
243
+ }
244
 
245
 
246
  /* Buttons */
img/instagram-pro-promo.png CHANGED
Binary file
instagram-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Instagram Feed
4
  Plugin URI: http://smashballoon.com/instagram-feed
5
  Description: Display beautifully clean, customizable, and responsive Instagram feeds
6
- Version: 1.3.6
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
@@ -22,7 +22,7 @@ along with this program; if not, write to the Free Software
22
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
  */
24
 
25
- define( 'SBIVER', '1.3.6' );
26
 
27
  //Include admin
28
  include dirname( __FILE__ ) .'/instagram-feed-admin.php';
3
  Plugin Name: Instagram Feed
4
  Plugin URI: http://smashballoon.com/instagram-feed
5
  Description: Display beautifully clean, customizable, and responsive Instagram feeds
6
+ Version: 1.3.7
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
22
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23
  */
24
 
25
+ define( 'SBIVER', '1.3.7' );
26
 
27
  //Include admin
28
  include dirname( __FILE__ ) .'/instagram-feed-admin.php';
js/sb-instagram.js CHANGED
@@ -111,6 +111,10 @@ function sbi_init(){
111
  time = date.getTime();
112
  image.created_time_raw = time;
113
 
 
 
 
 
114
  return true;
115
  },
116
  userId: parseInt( entry, 10 ),
111
  time = date.getTime();
112
  image.created_time_raw = time;
113
 
114
+ //Replace double quotes in the captions with the HTML symbol
115
+ //Always check to make sure it exists
116
+ if(image.caption != null) image.caption.text = image.caption.text.replace(/"/g, """);
117
+
118
  return true;
119
  },
120
  userId: parseInt( entry, 10 ),