Version Description
- Compatible with WordPress 4.8
Download this release
Release Info
Developer | smashballoon |
Plugin | Instagram Feed |
Version | 1.4.9 |
Comparing to | |
See all releases |
Code changes from version 1.4.8 to 1.4.9
- README.txt +6 -8
- css/sb-instagram-admin.css +44 -0
- instagram-feed-admin.php +49 -8
- instagram-feed.php +5 -5
- js/sb-instagram-admin.js +6 -0
README.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Instagram Feed ===
|
2 |
Contributors: smashballoon
|
3 |
-
Tags: Instagram, Instagram feed, Instagram photos,
|
4 |
Requires at least: 3.0
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -310,13 +310,11 @@ We understand that sometimes you need help, have issues or just have questions.
|
|
310 |
* Use the shortcode options to style multiple Instagram feeds in completely different ways
|
311 |
* Plus more customization options added all the time!
|
312 |
|
313 |
-
== Upgrade Notice ==
|
314 |
-
|
315 |
-
= 1.4.6 =
|
316 |
-
**Important:** Due to the recent Instagram API changes, in order for the Instagram Feed plugin to continue working after **June 1st** you must update the plugin and obtain a new Access Token on the plugin's Settings page.
|
317 |
-
|
318 |
== Changelog ==
|
319 |
|
|
|
|
|
|
|
320 |
= 1.4.8 =
|
321 |
* Tweak: Updated plugin links for new WordPress.org repo
|
322 |
* Fix: Minor bug fixes
|
1 |
=== Instagram Feed ===
|
2 |
Contributors: smashballoon
|
3 |
+
Tags: Instagram, Instagram feed, Instagram photos, Instagram widget, Instagram gallery
|
4 |
Requires at least: 3.0
|
5 |
+
Tested up to: 4.8
|
6 |
+
Stable tag: 1.4.9
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
310 |
* Use the shortcode options to style multiple Instagram feeds in completely different ways
|
311 |
* Plus more customization options added all the time!
|
312 |
|
|
|
|
|
|
|
|
|
|
|
313 |
== Changelog ==
|
314 |
|
315 |
+
= 1.4.9 =
|
316 |
+
* Compatible with WordPress 4.8
|
317 |
+
|
318 |
= 1.4.8 =
|
319 |
* Tweak: Updated plugin links for new WordPress.org repo
|
320 |
* Fix: Minor bug fixes
|
css/sb-instagram-admin.css
CHANGED
@@ -370,4 +370,48 @@
|
|
370 |
.sbi_review_notice .sbi_notice_close:hover,
|
371 |
.sbi_review_notice .sbi_notice_close:focus{
|
372 |
color: #a34100;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
}
|
370 |
.sbi_review_notice .sbi_notice_close:hover,
|
371 |
.sbi_review_notice .sbi_notice_close:focus{
|
372 |
color: #a34100;
|
373 |
+
}
|
374 |
+
|
375 |
+
/* Support page */
|
376 |
+
#sbi_admin .sbi_support{
|
377 |
+
overflow: hidden;
|
378 |
+
margin-bottom: 20px;
|
379 |
+
width: 70%;
|
380 |
+
}
|
381 |
+
#sbi_admin .sbi_support p{
|
382 |
+
width: 100%;
|
383 |
+
float: left;
|
384 |
+
clear: both;
|
385 |
+
margin: 0 0 20px 0;
|
386 |
+
}
|
387 |
+
#sbi_admin .sbi-support-title{
|
388 |
+
font-weight: bold;
|
389 |
+
font-size: 16px;
|
390 |
+
display: block;
|
391 |
+
padding-bottom: 5px;
|
392 |
+
}
|
393 |
+
#sbi_admin .sbi-support-faqs{
|
394 |
+
float: left;
|
395 |
+
clear: both;
|
396 |
+
width: 100%;
|
397 |
+
padding-left: 5%;
|
398 |
+
margin: -10px 0 10px 0;
|
399 |
+
}
|
400 |
+
#sbi_admin .sbi-support-faqs ul{
|
401 |
+
float: left;
|
402 |
+
width: 250px;
|
403 |
+
margin-right: 0;
|
404 |
+
}
|
405 |
+
#sbi_admin .sbi-support-faqs ul li{
|
406 |
+
font-size: 13px;
|
407 |
+
margin-bottom: 4px;
|
408 |
+
}
|
409 |
+
#sbi_admin .sbi-support-faqs .fa-chevron-right{
|
410 |
+
font-size: 8px;
|
411 |
+
margin-left: 4px;
|
412 |
+
}
|
413 |
+
#sbi_admin #sbi-support-video{
|
414 |
+
margin-top: 10px;
|
415 |
+
border: 1px solid #ddd;
|
416 |
+
display: none;
|
417 |
}
|
instagram-feed-admin.php
CHANGED
@@ -1013,14 +1013,55 @@ function sb_instagram_settings_page() {
|
|
1013 |
|
1014 |
<?php if( $sbi_active_tab == 'support' ) { //Start Support tab ?>
|
1015 |
|
1016 |
-
<
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1024 |
|
1025 |
<h3><?php _e('System Info <i style="color: #666; font-size: 11px; font-weight: normal;">Click the text below to select all</i>', 'instagram-feed'); ?></h3>
|
1026 |
|
1013 |
|
1014 |
<?php if( $sbi_active_tab == 'support' ) { //Start Support tab ?>
|
1015 |
|
1016 |
+
<div class="sbi_support">
|
1017 |
+
|
1018 |
+
<br />
|
1019 |
+
<h3 style="padding-bottom: 10px;">Need help?</h3>
|
1020 |
+
|
1021 |
+
<p>
|
1022 |
+
<span class="sbi-support-title"><i class="fa fa-life-ring" aria-hidden="true"></i> <a href="https://smashballoon.com/instagram-feed/free/" target="_blank"><?php _e('Setup Directions'); ?></a></span>
|
1023 |
+
<?php _e('A step-by-step guide on how to setup and use the plugin.'); ?>
|
1024 |
+
</p>
|
1025 |
+
|
1026 |
+
<p>
|
1027 |
+
<span class="sbi-support-title"><i class="fa fa-youtube-play" aria-hidden="true"></i> <a href="https://www.youtube.com/embed/V_fJ_vhvQXM" target="_blank" id="sbi-play-support-video"><?php _e('Watch a Video'); ?></a></span>
|
1028 |
+
<?php _e("Watch a short video demonstrating how to set up, customize and use the plugin.<br /><b>Please note</b> that the video shows the set up and use of the <b><a href='https://smashballoon.com/instagram-feed/' target='_blank'>PRO version</a></b> of the plugin, but the process is the same for this free version. The only difference is some of the features available."); ?>
|
1029 |
+
|
1030 |
+
<iframe id="sbi-support-video" src="//www.youtube.com/embed/V_fJ_vhvQXM?theme=light&showinfo=0&controls=2" width="960" height="540" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
|
1031 |
+
</p>
|
1032 |
+
|
1033 |
+
<p>
|
1034 |
+
<span class="sbi-support-title"><i class="fa fa-question-circle" aria-hidden="true"></i> <a href="https://smashballoon.com/instagram-feed/support/faq/" target="_blank"><?php _e('FAQs and Docs'); ?></a></span>
|
1035 |
+
<?php _e('View our expansive library of FAQs and documentation to help solve your problem as quickly as possible.'); ?>
|
1036 |
+
</p>
|
1037 |
+
|
1038 |
+
<div class="sbi-support-faqs">
|
1039 |
+
|
1040 |
+
<ul>
|
1041 |
+
<li><b>FAQs</b></li>
|
1042 |
+
<li>• <?php _e('<a href="https://smashballoon.com/instagram-feed/find-instagram-user-id/" target="_blank">How to find an Instagram User ID</a>'); ?></li>
|
1043 |
+
<li>• <?php _e('<a href="https://smashballoon.com/my-instagram-access-token-keep-expiring/" target="_blank">My Access Token Keeps Expiring</a>'); ?></li>
|
1044 |
+
<li>• <?php _e('<a href="https://smashballoon.com/my-photos-wont-load/" target="_blank">My Instagram Feed Won\'t Load</a>'); ?></li>
|
1045 |
+
<li style="margin-top: 8px; font-size: 12px;"><a href="https://smashballoon.com/instagram-feed/support/faq/" target="_blank">See All<i class="fa fa-chevron-right" aria-hidden="true"></i></a></li>
|
1046 |
+
</ul>
|
1047 |
+
|
1048 |
+
<ul>
|
1049 |
+
<li><b>Documentation</b></li>
|
1050 |
+
<li>• <?php _e('<a href="https://smashballoon.com/instagram-feed/free" target="_blank">Installation and Configuration</a>'); ?></li>
|
1051 |
+
<li>• <?php _e('<a href="https://smashballoon.com/display-multiple-instagram-feeds/" target="_blank">Displaying multiple feeds</a>'); ?></li>
|
1052 |
+
<li>• <?php _e('<a href="https://smashballoon.com/instagram-feed-faq/customization/" target="_blank">Customizing your Feed</a>'); ?></li>
|
1053 |
+
</ul>
|
1054 |
+
</div>
|
1055 |
+
|
1056 |
+
<p>
|
1057 |
+
<span class="sbi-support-title"><i class="fa fa-envelope" aria-hidden="true"></i> <a href="https://smashballoon.com/instagram-feed/support/" target="_blank"><?php _e('Request Support'); ?></a></span>
|
1058 |
+
<?php _e('Still need help? Submit a ticket and one of our support experts will get back to you as soon as possible.<br /><b>Important:</b> Please include your <b>System Info</b> below with all support requests.'); ?>
|
1059 |
+
</p>
|
1060 |
+
</div>
|
1061 |
+
|
1062 |
+
|
1063 |
+
|
1064 |
+
<hr />
|
1065 |
|
1066 |
<h3><?php _e('System Info <i style="color: #666; font-size: 11px; font-weight: normal;">Click the text below to select all</i>', 'instagram-feed'); ?></h3>
|
1067 |
|
instagram-feed.php
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Instagram Feed
|
4 |
-
Plugin URI:
|
5 |
Description: Display beautifully clean, customizable, and responsive Instagram feeds
|
6 |
-
Version: 1.4.
|
7 |
Author: Smash Balloon
|
8 |
-
Author URI:
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: instagram-feed
|
11 |
|
12 |
-
Copyright
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
15 |
the Free Software Foundation; either version 2 of the License, or
|
@@ -23,7 +23,7 @@ along with this program; if not, write to the Free Software
|
|
23 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
24 |
*/
|
25 |
|
26 |
-
define( 'SBIVER', '1.4.
|
27 |
|
28 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
29 |
//Include admin
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Instagram Feed
|
4 |
+
Plugin URI: https://smashballoon.com/instagram-feed
|
5 |
Description: Display beautifully clean, customizable, and responsive Instagram feeds
|
6 |
+
Version: 1.4.9
|
7 |
Author: Smash Balloon
|
8 |
+
Author URI: https://smashballoon.com/
|
9 |
License: GPLv2 or later
|
10 |
Text Domain: instagram-feed
|
11 |
|
12 |
+
Copyright 2017 Smash Balloon LLC (email : hey@smashballoon.com)
|
13 |
This program is free software; you can redistribute it and/or modify
|
14 |
it under the terms of the GNU General Public License as published by
|
15 |
the Free Software Foundation; either version 2 of the License, or
|
23 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
24 |
*/
|
25 |
|
26 |
+
define( 'SBIVER', '1.4.9' );
|
27 |
|
28 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
29 |
//Include admin
|
js/sb-instagram-admin.js
CHANGED
@@ -86,4 +86,10 @@ jQuery(document).ready(function($) {
|
|
86 |
}
|
87 |
});
|
88 |
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
});
|
86 |
}
|
87 |
});
|
88 |
|
89 |
+
//Support tab show video
|
90 |
+
jQuery('#sbi-play-support-video').on('click', function(e){
|
91 |
+
e.preventDefault();
|
92 |
+
jQuery('#sbi-support-video').show().attr('src', jQuery('#sbi-support-video').attr('src')+'&autoplay=1' );
|
93 |
+
});
|
94 |
+
|
95 |
});
|