Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.5.9

Version Description

Added apsi_icon_class filter for icon class

Download this release

Release Info

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

Code changes from version 1.5.8 to 1.5.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.5.8
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.8');
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.9
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.9');
50
  }
51
  /**
52
  * Register of widgets
inc/frontend/icon-group-list.php CHANGED
@@ -39,7 +39,7 @@
39
  $tooltip_text = ($icon['tooltip_text'] == '') ? esc_attr($title) : esc_attr($icon['tooltip_text']);
40
  ?>
41
  <div class="aps-each-icon <?php echo $icon_main_class; ?>" style='margin:<?php echo str_replace('px', '', $icon_set->icon_margin); ?>px;' data-aps-tooltip='<?php echo $tooltip_text ?>' data-aps-tooltip-enabled="<?php echo $icon_set->icon_tooltip; ?>" data-aps-tooltip-bg="<?php echo $tooltip_bg = ($icon_set->tooltip_background == '') ? '#000' : $icon_set->tooltip_background; ?>" data-aps-tooltip-color="<?php echo ($icon_set->tooltip_text_color == '') ? '#fff' : $icon_set->tooltip_text_color; ?>">
42
- <a href="<?php echo $icon['link'] ?>" <?php echo $link_target; ?> class="aps-icon-link animated <?php echo ($icon_set->icon_tooltip == 1) ? 'aps-tooltip' : ''; ?>" data-animation-class="<?php echo $icon_set->icon_animation; ?>">
43
  <?php
44
  $border_thickness = str_replace('px', '', $icon['border_thickness']);
45
  $border_thickness = ($border_thickness == '') ? '1' : $border_thickness;
39
  $tooltip_text = ($icon['tooltip_text'] == '') ? esc_attr($title) : esc_attr($icon['tooltip_text']);
40
  ?>
41
  <div class="aps-each-icon <?php echo $icon_main_class; ?>" style='margin:<?php echo str_replace('px', '', $icon_set->icon_margin); ?>px;' data-aps-tooltip='<?php echo $tooltip_text ?>' data-aps-tooltip-enabled="<?php echo $icon_set->icon_tooltip; ?>" data-aps-tooltip-bg="<?php echo $tooltip_bg = ($icon_set->tooltip_background == '') ? '#000' : $icon_set->tooltip_background; ?>" data-aps-tooltip-color="<?php echo ($icon_set->tooltip_text_color == '') ? '#fff' : $icon_set->tooltip_text_color; ?>">
42
+ <a href="<?php echo $icon['link'] ?>" <?php echo $link_target; ?> class="<?php echo apply_filters('apsi_icon_class','aps-icon-link');?> animated <?php echo ($icon_set->icon_tooltip == 1) ? 'aps-tooltip' : ''; ?>" data-animation-class="<?php echo $icon_set->icon_animation; ?>">
43
  <?php
44
  $border_thickness = str_replace('px', '', $icon['border_thickness']);
45
  $border_thickness = ($border_thickness == '') ? '1' : $border_thickness;
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: Access Keys
3
  Tags: social icon, social icons, social media, social icon widget, social icons widget, social media icons, social media plugin, social networking, social profiles, wordpress social icons, wp 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.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -129,6 +129,9 @@ 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.8 =
133
  * Added apsi_icon_style filter for icon style
134
 
2
  Contributors: Access Keys
3
  Tags: social icon, social icons, social media, social icon widget, social icons widget, social media icons, social media plugin, social networking, social profiles, wordpress social icons, wp social icons
4
  Donate link: http://accesspressthemes.com/donation/
5
+ Requires at least: 4.0
6
+ Tested up to: 4.6
7
+ Stable tag: 1.5.9
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.9 =
133
+ Added apsi_icon_class filter for icon class
134
+
135
  = 1.5.8 =
136
  * Added apsi_icon_style filter for icon style
137