Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.5.7

Version Description

  • Added apsi_icon_animation_option hook for animation option
  • Changed input type text to number for Margin Between Each Icon Field
Download this release

Release Info

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

Code changes from version 1.5.6 to 1.5.7

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.5.6
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: accesspress-social-icons
@@ -46,7 +46,7 @@ if (!defined('APS_LANG_DIR')) {
46
  }
47
  if(!defined('APS_VERSION'))
48
  {
49
- define('APS_VERSION','1.5.5');
50
  }
51
  /**
52
  * 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.5.7
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: accesspress-social-icons
46
  }
47
  if(!defined('APS_VERSION'))
48
  {
49
+ define('APS_VERSION','1.5.7');
50
  }
51
  /**
52
  * Register of widgets
inc/backend/edit-icon-set.php CHANGED
@@ -99,7 +99,7 @@ $icon_extra = unserialize($icon_set->icon_extra);
99
  <div class="aps-field-wrapper form-field">
100
  <label><?php _e('Margin Between Each Icon', 'accesspress-social-icons'); ?></label>
101
  <div class="aps-field">
102
- <input type="text" name="margins" value="<?php echo esc_attr($icon_set->icon_margin); ?>"/>
103
  </div>
104
  <div class="aps-field-note">
105
  <p>
@@ -164,6 +164,7 @@ $icon_extra = unserialize($icon_set->icon_extra);
164
  <option value="shake" <?php if ($icon_set->icon_animation == 'shake') { ?>selected="selected"<?php } ?>>shake</option>
165
  <option value="swing" <?php if ($icon_set->icon_animation == 'swing') { ?>selected="selected"<?php } ?>>swing</option>
166
  <option value="tada" <?php if ($icon_set->icon_animation == 'tada') { ?>selected="selected"<?php } ?>>tada</option>
 
167
  </optgroup>
168
  <optgroup label="Bouncing Entrances">
169
  <option value="bounceIn" <?php if ($icon_set->icon_animation == 'bounceIn') { ?>selected="selected"<?php } ?>>bounceIn</option>
@@ -181,6 +182,7 @@ $icon_extra = unserialize($icon_set->icon_extra);
181
  <optgroup label="Zoom Entrances">
182
  <option value="zoomIn" <?php if ($icon_set->icon_animation == 'zoomIn') { ?>selected="selected"<?php } ?>>zoomIn</option>
183
  </optgroup>
 
184
  </select>
185
  </div>
186
  </div><!--aps-field-wrapper form-field-->
99
  <div class="aps-field-wrapper form-field">
100
  <label><?php _e('Margin Between Each Icon', 'accesspress-social-icons'); ?></label>
101
  <div class="aps-field">
102
+ <input type="number" name="margins" value="<?php echo esc_attr($icon_set->icon_margin); ?>"/>
103
  </div>
104
  <div class="aps-field-note">
105
  <p>
164
  <option value="shake" <?php if ($icon_set->icon_animation == 'shake') { ?>selected="selected"<?php } ?>>shake</option>
165
  <option value="swing" <?php if ($icon_set->icon_animation == 'swing') { ?>selected="selected"<?php } ?>>swing</option>
166
  <option value="tada" <?php if ($icon_set->icon_animation == 'tada') { ?>selected="selected"<?php } ?>>tada</option>
167
+
168
  </optgroup>
169
  <optgroup label="Bouncing Entrances">
170
  <option value="bounceIn" <?php if ($icon_set->icon_animation == 'bounceIn') { ?>selected="selected"<?php } ?>>bounceIn</option>
182
  <optgroup label="Zoom Entrances">
183
  <option value="zoomIn" <?php if ($icon_set->icon_animation == 'zoomIn') { ?>selected="selected"<?php } ?>>zoomIn</option>
184
  </optgroup>
185
+ <?php do_action('apsi_icon_animation_option',$icon_set);?>
186
  </select>
187
  </div>
188
  </div><!--aps-field-wrapper form-field-->
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.5
7
- Stable tag: 1.5.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -129,8 +129,12 @@ Once you install the plugin , you can check some general documentation about how
129
  4. Backend Lcon Sets Listing
130
 
131
  == Changelog ==
 
 
 
 
132
  = 1.5.6 =
133
- * Checked and fixed some XSS vulnerabilities in plugin backend settings
134
 
135
  = 1.5.5 =
136
  * Changed input type to number for number of rows and columns field
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.5
7
+ Stable tag: 1.5.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
129
  4. Backend Lcon Sets Listing
130
 
131
  == Changelog ==
132
+ = 1.5.7 =
133
+ * Added apsi_icon_animation_option hook for animation option
134
+ * Changed input type text to number for Margin Between Each Icon Field
135
+
136
  = 1.5.6 =
137
+ * Checked and fixed some XSS vulnerabilities
138
 
139
  = 1.5.5 =
140
  * Changed input type to number for number of rows and columns field