Instagram Feed - Version 1.0.2

Version Description

  • Fix: Fixed an issue with the Instagram login URL on the Settings page
Download this release

Release Info

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

Code changes from version 1.0.1 to 1.0.2

Files changed (3) hide show
  1. README.txt +4 -5
  2. instagram-feed-admin.php +1 -2
  3. instagram-feed.php +1 -1
README.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: smashballoon
3
  Tags: Instagram, Instagram feed, Instagram photos
4
  Requires at least: 3.0
5
  Tested up to: 3.9.1
6
- Stable tag: 1.0.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -21,8 +21,6 @@ Display the Instagram photo feed of any non-private Instagram account.
21
 
22
  Lots more features coming soon!
23
 
24
- Credit to [Instafeed.js](https://github.com/stevenschobert/instafeed.js).
25
-
26
  == Installation ==
27
 
28
  1. Install the Instagram plugin either via the WordPress plugin directory, or by uploading the files to your web server (in the `/wp-content/plugins/` directory).
@@ -37,8 +35,6 @@ Credit to [Instafeed.js](https://github.com/stevenschobert/instafeed.js).
37
 
38
  Yep. You can display multiple Instagram feeds by using shortcode options, for example: `[instagram-feed id=1234567 cols=3 width=50%]`.
39
 
40
- Nope. The Access Token used in the plugin is a "read only" token, which means that it could never be used maliciously to manipulate your Instagram account.
41
-
42
  = How do I find my Instagram Access Token and User ID =
43
 
44
  We've made it super easy. Simply click on the big blue button on the Instagram plugins Settings page and log into your Instagram account. The plugin will then retrieve and display both your Access Token and User ID.
@@ -58,6 +54,9 @@ Nope. The Access Token used in the plugin is a "read only" token, which means th
58
 
59
  == Changelog ==
60
 
 
 
 
61
  = 1.0.1 =
62
  * Fix: Fixed an issue with the 'Load More' button opening an empty browser window in Firefox
63
 
3
  Tags: Instagram, Instagram feed, Instagram photos
4
  Requires at least: 3.0
5
  Tested up to: 3.9.1
6
+ Stable tag: 1.0.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
21
 
22
  Lots more features coming soon!
23
 
 
 
24
  == Installation ==
25
 
26
  1. Install the Instagram plugin either via the WordPress plugin directory, or by uploading the files to your web server (in the `/wp-content/plugins/` directory).
35
 
36
  Yep. You can display multiple Instagram feeds by using shortcode options, for example: `[instagram-feed id=1234567 cols=3 width=50%]`.
37
 
 
 
38
  = How do I find my Instagram Access Token and User ID =
39
 
40
  We've made it super easy. Simply click on the big blue button on the Instagram plugins Settings page and log into your Instagram account. The plugin will then retrieve and display both your Access Token and User ID.
54
 
55
  == Changelog ==
56
 
57
+ = 1.0.2 =
58
+ * Fix: Fixed an issue with the Instagram login URL on the Settings page
59
+
60
  = 1.0.1 =
61
  * Fix: Fixed an issue with the 'Load More' button opening an empty browser window in Firefox
62
 
instagram-feed-admin.php CHANGED
@@ -113,10 +113,9 @@ function sb_instagram_settings_page() {
113
  <h3><?php _e('Step 1: Configure'); ?></h3>
114
 
115
  <div id="sbi_config">
116
- <a href="https://instagram.com/oauth/authorize/?client_id=cf0499d7ff07458493920704ae44cf30&redirect_uri=http://smashballoon.com/instagram-feed/token/?return_uri=<?php echo admin_url('admin.php?page=instagram'); ?>&response_type=token" class="sbi_admin_btn"><?php _e('Log in and get my Access Token and User ID'); ?></a>
117
  </div>
118
 
119
-
120
  <tr valign="top">
121
  <th scope="row"><label><?php _e('Access Token'); ?></label></th>
122
  <td>
113
  <h3><?php _e('Step 1: Configure'); ?></h3>
114
 
115
  <div id="sbi_config">
116
+ <a href="https://instagram.com/oauth/authorize/?client_id=3a81a9fa2a064751b8c31385b91cc25c&redirect_uri=http://johndoesdesign.com/instagram.php?return_uri=<?php echo admin_url('admin.php?page=instagram'); ?>&response_type=token" class="sbi_admin_btn"><?php _e('Log in and get my Access Token and User ID'); ?></a>
117
  </div>
118
 
 
119
  <tr valign="top">
120
  <th scope="row"><label><?php _e('Access Token'); ?></label></th>
121
  <td>
instagram-feed.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Instagram Feed
4
  Plugin URI: http://smashballoon.com/instagram-feed
5
  Description: Add a simple customizable Instagram feed to your website
6
- Version: 1.0.1
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later
3
  Plugin Name: Instagram Feed
4
  Plugin URI: http://smashballoon.com/instagram-feed
5
  Description: Add a simple customizable Instagram feed to your website
6
+ Version: 1.0.2
7
  Author: Smash Balloon
8
  Author URI: http://smashballoon.com/
9
  License: GPLv2 or later