Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.5.2

Version Description

  • Added apsi_icon_sets_directory filter for icons sets directory so that it can be changed as required
Download this release

Release Info

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

Code changes from version 1.5.1 to 1.5.2

Files changed (2) hide show
  1. accesspress-social-icons.php +11 -3
  2. readme.txt +5 -2
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.1
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: accesspress-social-icons
@@ -24,14 +24,22 @@ if (!defined('APS_CSS_DIR')) {
24
  define('APS_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('APS_ICONS_DIR')) {
27
- define('APS_ICONS_DIR', plugin_dir_url(__FILE__) . 'icon-sets');
 
 
 
 
 
 
 
 
28
  }
29
  if (!defined('APS_LANG_DIR')) {
30
  define('APS_LANG_DIR', basename( dirname( __FILE__ ) ) . '/languages');
31
  }
32
  if(!defined('APS_VERSION'))
33
  {
34
- define('APS_VERSION','1.5.1');
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.5.2
8
  * Author:AccessPress Themes
9
  * Author URI:http://accesspressthemes.com/
10
  * Text Domain: accesspress-social-icons
24
  define('APS_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('APS_ICONS_DIR')) {
27
+ /**
28
+ * apsi_icons_sets_directory filter
29
+ *
30
+ * since @1.5.2
31
+ *
32
+ * Can be hooked to change http to https
33
+ *
34
+ * */
35
+ define('APS_ICONS_DIR', apply_filters('apsi_icon_sets_directory',plugin_dir_url(__FILE__) . 'icon-sets'));
36
  }
37
  if (!defined('APS_LANG_DIR')) {
38
  define('APS_LANG_DIR', basename( dirname( __FILE__ ) ) . '/languages');
39
  }
40
  if(!defined('APS_VERSION'))
41
  {
42
+ define('APS_VERSION','1.5.2');
43
  }
44
  /**
45
  * Register of widgets
readme.txt CHANGED
@@ -3,8 +3,8 @@ 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.3
7
- Stable tag: 1.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -124,6 +124,9 @@ Once you install the plugin , you can check some general documentation about how
124
  4. Backend Lcon Sets Listing
125
 
126
  == Changelog ==
 
 
 
127
  = 1.5.1 =
128
  * Removed delete option for available themes icons build
129
 
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.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
124
  4. Backend Lcon Sets Listing
125
 
126
  == Changelog ==
127
+ = 1.5.2 =
128
+ * Added apsi_icon_sets_directory filter for icons sets directory so that it can be changed as required
129
+
130
  = 1.5.1 =
131
  * Removed delete option for available themes icons build
132