Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.0.9

Version Description

  • Fixed small bug regarding shadow blur
  • Fixed small bug for unclosed aside tag in widget section
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Icons WordPress Plugin – AccessPress Social Icons
Version 1.0.9
Comparing to
See all releases

Code changes from version 1.0.8 to 1.0.9

accesspress-social-icons.php CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die("No script kiddies please!");
4
  * Plugin Name:AccessPress Social Icons
5
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
6
  * Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
7
- * Version:1.0.8
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: aps-social
@@ -31,7 +31,7 @@ if (!defined('APS_LANG_DIR')) {
31
  }
32
  if(!defined('APS_VERSION'))
33
  {
34
- define('APS_VERSION','1.0.8');
35
  }
36
  /**
37
  * Register of widgets
4
  * Plugin Name:AccessPress Social Icons
5
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
6
  * Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
7
+ * Version:1.0.9
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: aps-social
31
  }
32
  if(!defined('APS_VERSION'))
33
  {
34
+ define('APS_VERSION','1.0.9');
35
  }
36
  /**
37
  * Register of widgets
inc/backend/widgets.php CHANGED
@@ -35,6 +35,7 @@ class APS_Widget extends WP_Widget {
35
  $si_id = $instance['si_id'];
36
  echo do_shortcode('[aps-social id="'.$si_id.'"]');
37
  }
 
38
  }
39
 
40
  /**
35
  $si_id = $instance['si_id'];
36
  echo do_shortcode('[aps-social id="'.$si_id.'"]');
37
  }
38
+ echo $args['after_widget'];
39
  }
40
 
41
  /**
inc/frontend/icon-group-list.php CHANGED
@@ -50,7 +50,7 @@
50
  $offset_x = ($offset_x == '') ? '0' : $offset_x;
51
  $offset_y = str_replace('px', '', $icon['shadow_offset_y']);
52
  $offset_y = ($offset_y == '') ? '0' : $offset_y;
53
- $blur = str_replace('px', '', $icon['shadow_blur']);
54
  $blur = ($blur == '') ? '0' : $blur;
55
  $shadow_color = $icon['shadow_color'];
56
  if ($shadow_type != 'no') {
50
  $offset_x = ($offset_x == '') ? '0' : $offset_x;
51
  $offset_y = str_replace('px', '', $icon['shadow_offset_y']);
52
  $offset_y = ($offset_y == '') ? '0' : $offset_y;
53
+ $blur = str_replace('px', '', isset($icon['shadow_blur'])?$icon['shadow_blur']:0);
54
  $blur = ($blur == '') ? '0' : $blur;
55
  $shadow_color = $icon['shadow_color'];
56
  if ($shadow_type != 'no') {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social icon, social icons, social media, social icon widget, social icons
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.0.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -118,6 +118,10 @@ Once you install the plugin , you can check some general documentation about how
118
  4. Backend Lcon Sets Listing
119
 
120
  == Changelog ==
 
 
 
 
121
  = 1.0.8 =
122
  * Fixed small bug regarding undefined index in edit icons sets
123
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.0.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
118
  4. Backend Lcon Sets Listing
119
 
120
  == Changelog ==
121
+ = 1.0.9 =
122
+ * Fixed small bug regarding shadow blur
123
+ * Fixed small bug for unclosed aside tag in widget section
124
+
125
  = 1.0.8 =
126
  * Fixed small bug regarding undefined index in edit icons sets
127