AccessPress Instagram Feed - Version 2.0.4

Version Description

  • Done the follow me button link corrections to the masaic layout.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 AccessPress Instagram Feed
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

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.0.3
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:accesspress-instagram-feed
@@ -13,7 +13,7 @@ License: GPLv2 or later
13
  */
14
  //Decleration of the necessary constants for plugin
15
  if( !defined( 'APIF_VERSION' ) ) {
16
- define( 'APIF_VERSION', '2.0.3' );
17
  }
18
 
19
  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.0.4
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain:accesspress-instagram-feed
13
  */
14
  //Decleration of the necessary constants for plugin
15
  if( !defined( 'APIF_VERSION' ) ) {
16
+ define( 'APIF_VERSION', '2.0.4' );
17
  }
18
 
19
  if( !defined( 'APIF_IMAGE_DIR' ) ) {
inc/frontend/instagram-feed.php CHANGED
@@ -58,7 +58,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
58
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
59
  </a>
60
  </div>
61
- <a href="<?php echo $link; ?>" target="_blank" class="image-hover">
62
  <span class="follow">Follow Me</span>
63
  <span class="follow_icon">
64
  <img src="<?php echo $flow_icon; ?>"/>
@@ -69,7 +69,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
69
  <img class="the-thumb" src="<?php echo esc_url($image); ?>">
70
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
71
  </div>
72
- <a href="<?php echo $link; ?>" target="_blank" class="image-hover">
73
  <span class="follow">Follow Me</span>
74
  <span class="follow_icon">
75
  <img src="<?php echo $flow_icon; ?>"/>
58
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
59
  </a>
60
  </div>
61
+ <a href="https://instagram.com/<?php echo $username; ?>" target="_blank" class="image-hover">
62
  <span class="follow">Follow Me</span>
63
  <span class="follow_icon">
64
  <img src="<?php echo $flow_icon; ?>"/>
69
  <img class="the-thumb" src="<?php echo esc_url($image); ?>">
70
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
71
  </div>
72
+ <a href="https://instagram.com/<?php echo $username; ?>" target="_blank" class="image-hover">
73
  <span class="follow">Follow Me</span>
74
  <span class="follow_icon">
75
  <img src="<?php echo $flow_icon; ?>"/>
inc/frontend/instagram-masaic-light.php CHANGED
@@ -52,7 +52,7 @@ require_once('instagram.php');
52
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
53
  </a>
54
  </div>
55
- <a href="<?php echo $link; ?>" target="_blank" class="image-hover">
56
  <span class="follow">Follow Me</span>
57
  <span class="follow_icon">
58
  <img src="<?php echo $flow_icon; ?>"/>
52
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
53
  </a>
54
  </div>
55
+ <a href="https://instagram.com/<?php echo $username; ?>" target="_blank" class="image-hover">
56
  <span class="follow">Follow Me</span>
57
  <span class="follow_icon">
58
  <img src="<?php echo $flow_icon; ?>"/>
inc/frontend/instagram-widget.php CHANGED
@@ -51,7 +51,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
51
  <img class="the-thumb" src="<?php echo esc_url($image); ?>">
52
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
53
  </div>
54
- <a href="<?php echo $link; ?>" target="_blank" class="image-hover">
55
  <span class="follow">Follow Me</span>
56
  <span class="follow_icon">
57
  <img src="<?php echo $flow_icon; ?>"/>
51
  <img class="the-thumb" src="<?php echo esc_url($image); ?>">
52
  <img class="transparent-image" src="<?php echo esc_url($image_url); ?>">
53
  </div>
54
+ <a href="https://instagram.com/<?php echo $username; ?>" target="_blank" class="image-hover">
55
  <span class="follow">Follow Me</span>
56
  <span class="follow_icon">
57
  <img src="<?php echo $flow_icon; ?>"/>
readme.txt CHANGED
@@ -95,6 +95,9 @@ Once you install the plugin , you can check some general documentation about how
95
  5. Backend Display Settings Section
96
 
97
  == Changelog ==
 
 
 
98
  = 2.0.3 =
99
  * Done the addition of function to catch the error if instagram api failed to give response.
100
 
95
  5. Backend Display Settings Section
96
 
97
  == Changelog ==
98
+ = 2.0.4 =
99
+ * Done the follow me button link corrections to the masaic layout.
100
+
101
  = 2.0.3 =
102
  * Done the addition of function to catch the error if instagram api failed to give response.
103