Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.1.5

Version Description

  • Done some modifications in icon sets edit section
Download this release

Release Info

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

Code changes from version 1.1.4 to 1.1.5

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.1.4
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.1.4');
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.1.5
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.1.5');
35
  }
36
  /**
37
  * Register of widgets
inc/backend/edit-icon-set.php CHANGED
@@ -190,10 +190,10 @@ $icon_extra = unserialize($icon_set->icon_extra);
190
  <label><?php _e('Opacity on Non Hover', 'aps-social'); ?></label>
191
  <div class="aps-field">
192
  <select name="opacity_hover" class="aps-form-control">
193
- <option value="1" <?php if ($icon_set->opacity_hover == 1) { ?>selected="selected"<?php } ?>>1</option>
194
- <option value="0.75" <?php if ($icon_set->opacity_hover == 0.75) { ?>selected="selected"<?php } ?>>0.75</option>
195
- <option value="0.5" <?php if ($icon_set->opacity_hover == 0.5) { ?>selected="selected"<?php } ?>>0.5</option>
196
- <option value="0.25" <?php if ($icon_set->opacity_hover == 0.25) { ?>selected="selected"<?php } ?>>0.25</option>
197
  </select>
198
  </div>
199
  </div><!--aps-field-wrapper form-field-->
@@ -349,7 +349,6 @@ $icon_extra = unserialize($icon_set->icon_extra);
349
  $padding = str_replace('px', '', $icon_detail['padding']);
350
  $padding = "padding:{$padding}px;";
351
  $icon_style =".$icon_main_class img{height:{$icon_height}px;width:{$icon_width}px;{$border}{$shadow}{$padding}";
352
- //if($icon[''])
353
  ?>
354
  <style><?php echo $icon_style;?></style>
355
  </li>
190
  <label><?php _e('Opacity on Non Hover', 'aps-social'); ?></label>
191
  <div class="aps-field">
192
  <select name="opacity_hover" class="aps-form-control">
193
+ <option value="1" <?php selected($icon_set->opacity_hover,1);?>>1</option>
194
+ <option value="0.75" <?php selected($icon_set->opacity_hover,0.75);?>>0.75</option>
195
+ <option value="0.5" <?php selected($icon_set->opacity_hover,0.5);?>>0.5</option>
196
+ <option value="0.25" <?php selected($icon_set->opacity_hover,0.25);?>>0.25</option>
197
  </select>
198
  </div>
199
  </div><!--aps-field-wrapper form-field-->
349
  $padding = str_replace('px', '', $icon_detail['padding']);
350
  $padding = "padding:{$padding}px;";
351
  $icon_style =".$icon_main_class img{height:{$icon_height}px;width:{$icon_width}px;{$border}{$shadow}{$padding}";
 
352
  ?>
353
  <style><?php echo $icon_style;?></style>
354
  </li>
inc/backend/panel-head.php CHANGED
@@ -2,14 +2,13 @@
2
  <div class="aps-row">
3
  <div class="aps-col-logo">
4
  <div class="aps-logo">
5
- <img src="<?php echo APS_IMAGE_DIR.'/logo-social.png'?>" alt="AccessPress Anonymous Post">
6
  </div>
7
  </div>
8
  <div class="aps-col-socials">
9
  <div class="aps-socials">
10
  <p>Follow us for new updates</p>
11
  <div class="ap-social-bttns">
12
-
13
  <iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FAccessPress-Themes%2F1396595907277967&amp;width&amp;layout=button&amp;action=like&amp;show_faces=false&amp;share=false&amp;height=35&amp;appId=1411139805828592" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:20px; width:50px " allowtransparency="true"></iframe>
14
  &nbsp;&nbsp;
15
  <iframe id="twitter-widget-0" scrolling="no" frameborder="0" allowtransparency="true" src="http://platform.twitter.com/widgets/follow_button.21f7daa948263c3043bab783473c3475.en.html#_=1415777743087&amp;id=twitter-widget-0&amp;lang=en&amp;screen_name=apthemes&amp;show_count=false&amp;show_screen_name=true&amp;size=m" class="twitter-follow-button twitter-follow-button" title="Twitter Follow Button" data-twttr-rendered="true" style="width: 126px; height: 20px;"></iframe>
@@ -22,8 +21,7 @@
22
  fjs.parentNode.insertBefore(js, fjs);
23
  }
24
  }(document, "script", "twitter-wjs");</script>
25
-
26
- </div>
27
  </div>
28
  </div>
29
  <div class="aps-col-title">
2
  <div class="aps-row">
3
  <div class="aps-col-logo">
4
  <div class="aps-logo">
5
+ <img src="<?php echo APS_IMAGE_DIR.'/logo-social.png'?>" alt="AccessPress Social Icons"/>
6
  </div>
7
  </div>
8
  <div class="aps-col-socials">
9
  <div class="aps-socials">
10
  <p>Follow us for new updates</p>
11
  <div class="ap-social-bttns">
 
12
  <iframe src="//www.facebook.com/plugins/like.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FAccessPress-Themes%2F1396595907277967&amp;width&amp;layout=button&amp;action=like&amp;show_faces=false&amp;share=false&amp;height=35&amp;appId=1411139805828592" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:20px; width:50px " allowtransparency="true"></iframe>
13
  &nbsp;&nbsp;
14
  <iframe id="twitter-widget-0" scrolling="no" frameborder="0" allowtransparency="true" src="http://platform.twitter.com/widgets/follow_button.21f7daa948263c3043bab783473c3475.en.html#_=1415777743087&amp;id=twitter-widget-0&amp;lang=en&amp;screen_name=apthemes&amp;show_count=false&amp;show_screen_name=true&amp;size=m" class="twitter-follow-button twitter-follow-button" title="Twitter Follow Button" data-twttr-rendered="true" style="width: 126px; height: 20px;"></iframe>
21
  fjs.parentNode.insertBefore(js, fjs);
22
  }
23
  }(document, "script", "twitter-wjs");</script>
24
+ </div>
 
25
  </div>
26
  </div>
27
  <div class="aps-col-title">
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
- === AccessPress Social Icons ===
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.1
7
- Stable tag: 1.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -21,13 +21,7 @@ Once the icon set is defined/customized - you can place it anywhere you want usi
21
 
22
  You can have more than one icon sets created and used on the site. A large icon sets on the header and a tiny one on the footer - for example.
23
 
24
- `For more features like SVG icon sets, font awesome icon sets, amazing
25
- customization options, feature rich sidebar options - upgrade to
26
- PRO version.`
27
-
28
-
29
-
30
-
31
 
32
  = Free Features: =
33
 
@@ -69,23 +63,15 @@ PRO version.`
69
  - Get free updates for lifetime.
70
 
71
  = Premium Features =
72
- Beautifully Designed more SVG and PNG icon sets
73
-
74
- 105 Font Awesome Icons with designer and live preview
75
-
76
- Social Sidebar with various configurable options(position, animations,
77
- margins etc) with live preview
78
-
79
- ★ Retina Ready SVG icons(width and height won't effect the icons quality)
80
-
81
- ★ Advanced Customization for both image and font icons
82
-
83
- ★ And many more...
84
-
85
-
86
 
87
  = Premium Upgrades =
88
- For Premium upgrades please go [here](http://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/).
89
 
90
  = Some Useful Links =
91
  * <strong>Support Email</strong>: support@accesspressthemes.com
@@ -128,6 +114,9 @@ Once you install the plugin , you can check some general documentation about how
128
  4. Backend Lcon Sets Listing
129
 
130
  == Changelog ==
 
 
 
131
  = 1.1.4 =
132
  * Added some more translation ready texts
133
 
1
+ === AccessPress Social Icons ===
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.1
7
+ Stable tag: 1.1.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
21
 
22
  You can have more than one icon sets created and used on the site. A large icon sets on the header and a tiny one on the footer - for example.
23
 
24
+ <strong><em>For more features like SVG icon sets, font awesome icon sets, amazing customization options, feature rich sidebar options - upgrade to PRO version.</em></strong>
 
 
 
 
 
 
25
 
26
  = Free Features: =
27
 
63
  - Get free updates for lifetime.
64
 
65
  = Premium Features =
66
+ ? <strong>Beautifully Designed more SVG and PNG icon sets</strong> <br />
67
+ ? <strong>105 Font Awesome Icons with designer and live preview</strong><br />
68
+ ? <strong>Social Sidebar with various configurable options (position, animations, margins etc) with live preview</strong><br />
69
+ ? <strong>Retina Ready SVG icons(width and height won't effect the icons quality)</strong><br />
70
+ ? <strong>Advanced Customization for both image and font icons</strong><br />
71
+ ? <strong>And many more...</strong><br />
 
 
 
 
 
 
 
 
72
 
73
  = Premium Upgrades =
74
+ ? For Premium upgrades please go [here](http://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/).
75
 
76
  = Some Useful Links =
77
  * <strong>Support Email</strong>: support@accesspressthemes.com
114
  4. Backend Lcon Sets Listing
115
 
116
  == Changelog ==
117
+ = 1.1.5 =
118
+ * Done some modifications in icon sets edit section
119
+
120
  = 1.1.4 =
121
  * Added some more translation ready texts
122