Version Description
- Done the bug fixings for the label attributes in instagram profile settings.
Download this release
Release Info
Developer | Access Keys |
Plugin | AccessPress Instagram Feed |
Version | 2.1.7 |
Comparing to | |
See all releases |
Code changes from version 2.1.6 to 2.1.7
accesspress-instagram-feed.php
CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
|
4 |
Plugin name: AccessPress Instagram Feed
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-instagram-feed/
|
6 |
Description: A plugin to add various instagram widgets with dynamic configuration options.
|
7 |
-
Version: 2.1.
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain:accesspress-instagram-feed
|
@@ -14,7 +14,7 @@ License: GPLv2 or later
|
|
14 |
|
15 |
//Decleration of the necessary constants for plugin
|
16 |
if( !defined( 'APIF_VERSION' ) ) {
|
17 |
-
define( 'APIF_VERSION', '2.1.
|
18 |
}
|
19 |
|
20 |
if( !defined( 'APIF_IMAGE_DIR' ) ) {
|
4 |
Plugin name: AccessPress Instagram Feed
|
5 |
Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-instagram-feed/
|
6 |
Description: A plugin to add various instagram widgets with dynamic configuration options.
|
7 |
+
Version: 2.1.7
|
8 |
Author: AccessPress Themes
|
9 |
Author URI: http://accesspressthemes.com
|
10 |
Text Domain:accesspress-instagram-feed
|
14 |
|
15 |
//Decleration of the necessary constants for plugin
|
16 |
if( !defined( 'APIF_VERSION' ) ) {
|
17 |
+
define( 'APIF_VERSION', '2.1.7' );
|
18 |
}
|
19 |
|
20 |
if( !defined( 'APIF_IMAGE_DIR' ) ) {
|
inc/backend/boards/instagram-profiles.php
CHANGED
@@ -6,21 +6,21 @@
|
|
6 |
<h4><?php _e('Instagram Feed', 'accesspress-instagram-feed') ?></h4>
|
7 |
<div class="apsc-option-extra">
|
8 |
<div class="apsc-option-inner-wrapper">
|
9 |
-
<label><?php _e('Instagram Username', 'accesspress-instagram-feed'); ?></label>
|
10 |
<div class="apsc-option-field">
|
11 |
-
<input type="text" name="instagram[username]" value="<?php echo esc_attr($apif_settings['username']);?>"/>
|
12 |
<div class="apsc-option-note"><?php _e('Please enter the instagram username', 'accesspress-instagram-feed'); ?></div>
|
13 |
</div>
|
14 |
</div>
|
15 |
<div class="apsc-option-inner-wrapper">
|
16 |
-
<label><?php _e('Instagram User ID', 'accesspress-instagram-feed'); ?></label>
|
17 |
<div class="apsc-option-field">
|
18 |
-
<input type="text" name="instagram[user_id]" value="<?php echo esc_attr($apif_settings['user_id']);?>"/>
|
19 |
<div class="apsc-option-note"><?php _e('Please enter the instagram user ID.You can get this information from <a href="http://www.pinceladasdaweb.com.br/instagram/access-token/" target="_blank">http://www.pinceladasdaweb.com.br/instagram/access-token/</a>', 'accesspress-instagram-feed'); ?></div>
|
20 |
</div>
|
21 |
</div>
|
22 |
<div class="apsc-option-inner-wrapper">
|
23 |
-
<label><?php _e('Instagram Access Token', 'accesspress-instagram-feed'); ?></label>
|
24 |
<div class="apsc-option-field">
|
25 |
<?php
|
26 |
if(isset($_GET['access_token'])){
|
@@ -31,7 +31,7 @@
|
|
31 |
$access_token = '';
|
32 |
}
|
33 |
?>
|
34 |
-
<input type="text" name="instagram[access_token]" value="<?php echo esc_attr($access_token); ?>"/>
|
35 |
<div class="apsc-option-note">
|
36 |
<?php _e('Please enter the instagram Access Token.You can get this by clicking the below link. If new access token not received in the above Instagram access token field, please copy the access token from the url above after access_token=', 'accesspress-instagram-feed'); ?>
|
37 |
<?php _e("Please don't forget to click save button.", 'accesspress-instagram-feed'); ?>
|
6 |
<h4><?php _e('Instagram Feed', 'accesspress-instagram-feed') ?></h4>
|
7 |
<div class="apsc-option-extra">
|
8 |
<div class="apsc-option-inner-wrapper">
|
9 |
+
<label for='instagram_username'><?php _e('Instagram Username', 'accesspress-instagram-feed'); ?></label>
|
10 |
<div class="apsc-option-field">
|
11 |
+
<input type="text" name="instagram[username]" id='instagram_username' value="<?php echo esc_attr($apif_settings['username']);?>"/>
|
12 |
<div class="apsc-option-note"><?php _e('Please enter the instagram username', 'accesspress-instagram-feed'); ?></div>
|
13 |
</div>
|
14 |
</div>
|
15 |
<div class="apsc-option-inner-wrapper">
|
16 |
+
<label for='instagram_user_id'><?php _e('Instagram User ID', 'accesspress-instagram-feed'); ?></label>
|
17 |
<div class="apsc-option-field">
|
18 |
+
<input type="text" name="instagram[user_id]" id='instagram_user_id' value="<?php echo esc_attr($apif_settings['user_id']);?>"/>
|
19 |
<div class="apsc-option-note"><?php _e('Please enter the instagram user ID.You can get this information from <a href="http://www.pinceladasdaweb.com.br/instagram/access-token/" target="_blank">http://www.pinceladasdaweb.com.br/instagram/access-token/</a>', 'accesspress-instagram-feed'); ?></div>
|
20 |
</div>
|
21 |
</div>
|
22 |
<div class="apsc-option-inner-wrapper">
|
23 |
+
<label for='instagram_access_token'><?php _e('Instagram Access Token', 'accesspress-instagram-feed'); ?></label>
|
24 |
<div class="apsc-option-field">
|
25 |
<?php
|
26 |
if(isset($_GET['access_token'])){
|
31 |
$access_token = '';
|
32 |
}
|
33 |
?>
|
34 |
+
<input type="text" name="instagram[access_token]" id='instagram_access_token' value="<?php echo esc_attr($access_token); ?>"/>
|
35 |
<div class="apsc-option-note">
|
36 |
<?php _e('Please enter the instagram Access Token.You can get this by clicking the below link. If new access token not received in the above Instagram access token field, please copy the access token from the url above after access_token=', 'accesspress-instagram-feed'); ?>
|
37 |
<?php _e("Please don't forget to click save button.", 'accesspress-instagram-feed'); ?>
|
inc/frontend/instagram-grid-rotator.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
3 |
-
|
4 |
$apif_settings = get_option( 'apif_settings' );
|
5 |
$username = !empty($apif_settings['username']) ? $apif_settings['username'] : ''; // your username
|
6 |
$access_token = !empty($apif_settings['access_token']) ? $apif_settings['access_token'] : '';
|
1 |
<?php
|
2 |
defined( 'ABSPATH' ) or die( "No script kiddies please!" );
|
3 |
+
global $apif_settings, $insta;
|
4 |
$apif_settings = get_option( 'apif_settings' );
|
5 |
$username = !empty($apif_settings['username']) ? $apif_settings['username'] : ''; // your username
|
6 |
$access_token = !empty($apif_settings['access_token']) ? $apif_settings['access_token'] : '';
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
=== AccessPress Instagram Feed ===
|
2 |
Contributors: Access Keys
|
3 |
Tags: instagram, instagram feed, instagram tag, instagram slider, instagarm mosaic view, instagarm mosaic layout, instagram lightbox, social media instagram, social network, masonry layout, masonry lightbox, instagarm masonry view, grid rotator, grid rotatory
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -132,6 +132,9 @@ Once you install the plugin , you can check some general documentation about how
|
|
132 |
5. Backend Display Settings Section
|
133 |
|
134 |
== Changelog ==
|
|
|
|
|
|
|
135 |
= 2.1.6 =
|
136 |
* Done the security check for the direct access of the plugin backend files.
|
137 |
|
1 |
+
=== AccessPress Instagram Feed ===
|
2 |
Contributors: Access Keys
|
3 |
Tags: instagram, instagram feed, instagram tag, instagram slider, instagarm mosaic view, instagarm mosaic layout, instagram lightbox, social media instagram, social network, masonry layout, masonry lightbox, instagarm masonry view, grid rotator, grid rotatory
|
4 |
Donate link: http://accesspressthemes.com/donation/
|
5 |
Requires at least: 3.8
|
6 |
+
Tested up to: 4.6
|
7 |
+
Stable tag: 2.1.7
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
132 |
5. Backend Display Settings Section
|
133 |
|
134 |
== Changelog ==
|
135 |
+
= 2.1.7 =
|
136 |
+
* Done the bug fixings for the label attributes in instagram profile settings.
|
137 |
+
|
138 |
= 2.1.6 =
|
139 |
* Done the security check for the direct access of the plugin backend files.
|
140 |
|