Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.7.9

Version Description

  • Checked compatibility with the latest wp version
  • Refined js to fix backend issue
Download this release

Release Info

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

Code changes from version 1.7.8 to 1.7.9

accesspress-social-icons.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: AccessPress Social Icons
4
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
5
  * Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
6
- * Version: 1.7.8
7
  * Author:AccessPress Themes
8
  * Author URI:http://accesspressthemes.com/
9
  * Text Domain: accesspress-social-icons
@@ -47,11 +47,11 @@ if (!class_exists('APS_Class')) {
47
 
48
  function admin_footer_text( $text ){
49
  $link = 'https://wordpress.org/support/plugin/accesspress-social-icons/reviews/#new-post';
50
- $pro_link = 'https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839';
51
  if(isset( $_GET[ 'page' ] )){
52
  if($_GET[ 'page' ] == 'aps-social-add' || $_GET[ 'page' ] == 'aps-social' ||
53
  $_GET[ 'page' ] == 'aps-about' || $_GET[ 'page' ] == 'aps-social-how-to-use'
54
- || $_GET[ 'page' ] == 'aps-more-wp-resources' || $_GET[ 'page' ] == 'aps-social-how-to-use'){
55
  $text = 'Enjoyed AccessPress Social Icons? <a href="' . $link . '" target="_blank">Please leave us a ★★★★★ rating</a> We really appreciate your support! | Try premium version of <a href="' . $pro_link . '" target="_blank">AccessPress Social Icons Pro</a> - more features, more power!';
56
  }
57
  }
@@ -64,7 +64,7 @@ if (!class_exists('APS_Class')) {
64
  exit();
65
  }
66
  if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'aps-premium' ) {
67
- wp_redirect( 'https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839' );
68
  exit();
69
  }
70
  }
@@ -75,7 +75,7 @@ if (!class_exists('APS_Class')) {
75
  'demo' => '<a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons" target="_blank"><span class="dashicons dashicons-welcome-view-site"></span>Live Demo</a>',
76
  'doc' => '<a href="https://accesspressthemes.com/documentation/accesspress-social-icons/" target="_blank"><span class="dashicons dashicons-media-document"></span>Documentation</a>',
77
  'support' => '<a href="http://accesspressthemes.com/support" target="_blank"><span class="dashicons dashicons-admin-users"></span>Support</a>',
78
- 'pro' => '<a href="https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839" target="_blank"><span class="dashicons dashicons-cart"></span>Premium version</a>'
79
  );
80
  $links = array_merge( $links, $new_links );
81
  }
@@ -125,7 +125,7 @@ if (!class_exists('APS_Class')) {
125
  }
126
  if(!defined('APS_VERSION'))
127
  {
128
- define('APS_VERSION','1.7.8');
129
  }
130
  }
131
 
@@ -146,7 +146,6 @@ if (!class_exists('APS_Class')) {
146
  add_submenu_page('aps-social', __('Add New Set','accesspress-social-icons'), __('Add New Set','accesspress-social-icons'), 'manage_options', 'aps-social-add', array($this, 'add_new_set'));
147
  add_submenu_page('aps-social', __('How to use','accesspress-social-icons'), __('How to use','accesspress-social-icons'), 'manage_options', 'aps-social-how-to-use', array($this, 'how_to_use'));
148
  add_submenu_page('aps-social', __('About','accesspress-social-icons'), __('About','accesspress-social-icons'), 'manage_options', 'aps-about', array($this, 'about'));
149
- add_submenu_page('aps-social', __('More WordPress Resources','accesspress-social-icons'), __('More WordPress Resources','accesspress-social-icons'), 'manage_options', 'aps-more-wp-resources', array($this, 'wp_resources'));
150
  add_submenu_page( 'aps-social', __( 'Documentation','accesspress-social-icons'), __( 'Documentation', 'accesspress-social-icons' ), 'manage_options', 'aps-doclinks', '__return_false', null, 9 );
151
  add_submenu_page( 'aps-social', __( 'Check Premium Version', 'accesspress-social-icons' ), __( 'Check Premium Version', 'accesspress-social-icons' ), 'manage_options', 'aps-premium', '__return_false', null, 9 );
152
  }
@@ -160,11 +159,6 @@ if (!class_exists('APS_Class')) {
160
  function add_new_set() {
161
  include_once('inc/backend/add-new-set.php');
162
  }
163
-
164
- function wp_resources(){
165
- include_once('inc/backend/wp-resources.php');
166
- }
167
-
168
  //registers all the js and css in wp-admin
169
  function register_admin_assets() {
170
  wp_enqueue_media();
3
  * Plugin Name: AccessPress Social Icons
4
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons/
5
  * Description: A plugin to add social icons in your site wherever you want dynamically with handful of configurable settings.
6
+ * Version: 1.7.9
7
  * Author:AccessPress Themes
8
  * Author URI:http://accesspressthemes.com/
9
  * Text Domain: accesspress-social-icons
47
 
48
  function admin_footer_text( $text ){
49
  $link = 'https://wordpress.org/support/plugin/accesspress-social-icons/reviews/#new-post';
50
+ $pro_link = 'https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/';
51
  if(isset( $_GET[ 'page' ] )){
52
  if($_GET[ 'page' ] == 'aps-social-add' || $_GET[ 'page' ] == 'aps-social' ||
53
  $_GET[ 'page' ] == 'aps-about' || $_GET[ 'page' ] == 'aps-social-how-to-use'
54
+ || $_GET[ 'page' ] == 'aps-social-how-to-use'){
55
  $text = 'Enjoyed AccessPress Social Icons? <a href="' . $link . '" target="_blank">Please leave us a ★★★★★ rating</a> We really appreciate your support! | Try premium version of <a href="' . $pro_link . '" target="_blank">AccessPress Social Icons Pro</a> - more features, more power!';
56
  }
57
  }
64
  exit();
65
  }
66
  if ( isset( $_GET[ 'page' ] ) && $_GET[ 'page' ] == 'aps-premium' ) {
67
+ wp_redirect( 'https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/' );
68
  exit();
69
  }
70
  }
75
  'demo' => '<a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons" target="_blank"><span class="dashicons dashicons-welcome-view-site"></span>Live Demo</a>',
76
  'doc' => '<a href="https://accesspressthemes.com/documentation/accesspress-social-icons/" target="_blank"><span class="dashicons dashicons-media-document"></span>Documentation</a>',
77
  'support' => '<a href="http://accesspressthemes.com/support" target="_blank"><span class="dashicons dashicons-admin-users"></span>Support</a>',
78
+ 'pro' => '<a href="https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank"><span class="dashicons dashicons-cart"></span>Premium version</a>'
79
  );
80
  $links = array_merge( $links, $new_links );
81
  }
125
  }
126
  if(!defined('APS_VERSION'))
127
  {
128
+ define('APS_VERSION','1.7.9');
129
  }
130
  }
131
 
146
  add_submenu_page('aps-social', __('Add New Set','accesspress-social-icons'), __('Add New Set','accesspress-social-icons'), 'manage_options', 'aps-social-add', array($this, 'add_new_set'));
147
  add_submenu_page('aps-social', __('How to use','accesspress-social-icons'), __('How to use','accesspress-social-icons'), 'manage_options', 'aps-social-how-to-use', array($this, 'how_to_use'));
148
  add_submenu_page('aps-social', __('About','accesspress-social-icons'), __('About','accesspress-social-icons'), 'manage_options', 'aps-about', array($this, 'about'));
 
149
  add_submenu_page( 'aps-social', __( 'Documentation','accesspress-social-icons'), __( 'Documentation', 'accesspress-social-icons' ), 'manage_options', 'aps-doclinks', '__return_false', null, 9 );
150
  add_submenu_page( 'aps-social', __( 'Check Premium Version', 'accesspress-social-icons' ), __( 'Check Premium Version', 'accesspress-social-icons' ), 'manage_options', 'aps-premium', '__return_false', null, 9 );
151
  }
159
  function add_new_set() {
160
  include_once('inc/backend/add-new-set.php');
161
  }
 
 
 
 
 
162
  //registers all the js and css in wp-admin
163
  function register_admin_assets() {
164
  wp_enqueue_media();
inc/backend/about.php CHANGED
@@ -25,58 +25,9 @@
25
  <div class="halfseperator"></div>
26
  <p><strong><?php esc_html_e("If you'd like to buy premium version of this plugin please check here:", 'accesspress-social-icons'); ?></strong>
27
  <br />
28
- <a href="https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839" target="_blank">Upgrade To Pro </a>
29
  </p>
30
  <p>&nbsp;</p>
31
- <h3 class="sub-title"><?php esc_html_e('More from AccessPress themes ', 'accesspress-social-icons'); ?></h3>
32
- <div class="aps-row">
33
- <div class="aps-col-one-third">
34
- <div class="product">
35
- <div class="logo-product">
36
- <a href="http://accesspressthemes.com/plugins/" target="_blank">
37
- <img src="<?php echo APS_IMAGE_DIR; ?>/plugin.png" alt="<?php esc_attr_e('AccessPress Social Icons', 'accesspress-social-icons'); ?>" />
38
- </a>
39
- </div>
40
- <div class="productext">
41
- <p><strong><?php esc_html_e('WordPress Plugins', 'accesspress-social-icons'); ?></strong>
42
- <br />
43
- <a href="http://accesspressthemes.com/plugins/" target="_blank">http://accesspressthemes.com/plugins/</a>
44
- </p>
45
- </div>
46
- </div>
47
- </div>
48
- <div class="aps-col-one-third">
49
- <div class="product">
50
- <div class="logo-product">
51
- <a href="http://accesspressthemes.com/themes/" target="_blank"><img src="<?php echo APS_IMAGE_DIR; ?>/theme.png" /></a>
52
- </div>
53
- <div class="productext">
54
- <p><strong><?php esc_html_e('WordPress Themes', 'accesspress-social-icons'); ?></strong>
55
- <br />
56
- <a href="http://accesspressthemes.com/themes/" target="_blank">http://accesspressthemes.com/themes/</a>
57
- </p>
58
- </div>
59
- </div>
60
- </div>
61
-
62
-
63
-
64
- <div class="aps-col-one-third">
65
- <div class="product">
66
- <div class="logo-product">
67
- <a href="http://accesspressthemes.com/contact/" target="_blank"><img src="<?php echo APS_IMAGE_DIR; ?>/customize.png" /></a>
68
- </div>
69
- <div class="productext">
70
- <p><strong><?php esc_html_e('WordPress Customization', 'accesspress-social-icons'); ?></strong>
71
- <br />
72
- <a href="http://accesspressthemes.com/contact/" target="_blank">http://accesspressthemes.com/wordpress-plugins/contact/</a>
73
- </p>
74
- </div>
75
- </div>
76
- </div>
77
- </div>
78
-
79
-
80
 
81
  <hr />
82
  <h3><?php esc_html_e('Get in touch', 'accesspress-social-icons'); ?></h3>
@@ -99,15 +50,6 @@
99
  <br />
100
  <iframe style="border: none; overflow: hidden; width: 942px; height: 250px;" src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FAccessPress-Themes%2F1396595907277967&amp;width=942&amp;height=258&amp;colorscheme=light&amp;show_faces=true&amp;header=false&amp;stream=false&amp;show_border=true&amp;appId=1411139805828592" width="942" height="258" frameborder="0" scrolling="no"></iframe>
101
  </p>
102
-
103
- <ul class="aps-about-social-icon aps-unstyled aps-inlinelist">
104
- <li><a href="http://www.pinterest.com/accesspresswp/" target="_blank"><img src="<?php echo APS_IMAGE_DIR; ?>/pinterest.png" alt="pinterest"></a>
105
- </li>
106
- <li><a href="https://www.flickr.com/photos/accesspressthemes/" target="_blank"><img src="<?php echo APS_IMAGE_DIR; ?>/flicker.png" alt="flicker"></a>
107
- </li>
108
- <li><a href="https://twitter.com/apthemes" target="_blank"><img src="<?php echo APS_IMAGE_DIR; ?>/twitter.png" alt="twitter"></a>
109
- </li>
110
- </ul>
111
  </div>
112
  </div>
113
  </div>
25
  <div class="halfseperator"></div>
26
  <p><strong><?php esc_html_e("If you'd like to buy premium version of this plugin please check here:", 'accesspress-social-icons'); ?></strong>
27
  <br />
28
+ <a href="https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank">Upgrade To Pro </a>
29
  </p>
30
  <p>&nbsp;</p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  <hr />
33
  <h3><?php esc_html_e('Get in touch', 'accesspress-social-icons'); ?></h3>
50
  <br />
51
  <iframe style="border: none; overflow: hidden; width: 942px; height: 250px;" src="//www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FAccessPress-Themes%2F1396595907277967&amp;width=942&amp;height=258&amp;colorscheme=light&amp;show_faces=true&amp;header=false&amp;stream=false&amp;show_border=true&amp;appId=1411139805828592" width="942" height="258" frameborder="0" scrolling="no"></iframe>
52
  </p>
 
 
 
 
 
 
 
 
 
53
  </div>
54
  </div>
55
  </div>
inc/backend/promobar.php CHANGED
@@ -1,11 +1,11 @@
1
  <div class="aps-promobar">
2
  <div>
3
- <a href="http://codecanyon.net/item/accesspress-social-icons-pro/9700839?ref=AccessKeys" target="_blank" class="ap-upgrade-first"><img src="<?php echo APS_IMAGE_DIR.'/accesspress-social-icons-pro-upgrade.png';?>"></a>
4
  </div>
5
  <div class="aps-demo-links">
6
  <div class="aps-btn-group">
7
  <a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-demo">DEMO</a>
8
- <a href="https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839" target="_blank" class="aps-btn aps-btn-default aps-btn-upgrade">UPGRADE</a>
9
  </div>
10
  </div>
11
  <div>
@@ -14,7 +14,7 @@
14
  <div class="aps-demo-links">
15
  <div class="aps-btn-group">
16
  <a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-demo">DEMO</a>
17
- <a href="https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839" target="_blank" class="aps-btn aps-btn-default aps-btn-upgrade">UPGRADE</a>
18
  </div>
19
  </div>
20
  <div class="aps-enquiry-block">
1
  <div class="aps-promobar">
2
  <div>
3
+ <a href="https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="ap-upgrade-first"><img src="<?php echo APS_IMAGE_DIR.'/accesspress-social-icons-pro-upgrade.png';?>"></a>
4
  </div>
5
  <div class="aps-demo-links">
6
  <div class="aps-btn-group">
7
  <a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-demo">DEMO</a>
8
+ <a href="https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-upgrade">UPGRADE</a>
9
  </div>
10
  </div>
11
  <div>
14
  <div class="aps-demo-links">
15
  <div class="aps-btn-group">
16
  <a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-demo">DEMO</a>
17
+ <a href="https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="aps-btn aps-btn-default aps-btn-upgrade">UPGRADE</a>
18
  </div>
19
  </div>
20
  <div class="aps-enquiry-block">
inc/backend/wp-resources.php DELETED
@@ -1,31 +0,0 @@
1
- <div class="wrap aps-clear">
2
- <div class="aps-add-set-wrapper">
3
- <div class="aps-panel">
4
- <?php include( 'panel-head.php'); ?>
5
- <div class="aps-panel-body">
6
- <div class="aps-row">
7
- <div class="aps-col-three-third">
8
- <h2><?php _e('More WordPress Resources', 'accesspress-social-icons'); ?></h2>
9
- <div>
10
- <p><strong>AccessPress Social Icons</strong> works best with every WordPress theme. It's even more remarkable when used with popular themes like VMagazine and AccessPress Parallax.</p>
11
-
12
- <p>AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :</p>
13
-
14
- <p><a href="https://wpallclub.com/">WPAll Club</a> - A complete WordPress resources club. WordPress tutorials, blogs, curated free and premium themes and plugins, WordPress deals, offers, hosting info and more.</p>
15
-
16
- <p> <a href="https://themeforest.net/user/accesskeys/portfolio">Premium WordPress Themes</a> - <strong>6 premium WordPress</strong> themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you. </p>
17
-
18
- <p> <a href="https://codecanyon.net/user/accesskeys/portfolio?Ref=AccessKeys">Premium WordPress Plugins</a> - <strong>45+ premium WordPress plugins</strong> of many different types. High user ratings, great quality and best sellers in CodeCanyon marketplace. </p>
19
-
20
- <p> <a href="https://accesspressthemes.com/">AccessPress Themes</a> - <strong>AccessPress Themes</strong> has 50+ beautiful and elegant, fully responsive, multipurpose themes to meet your need for free and commercial basis.</p>
21
-
22
- <p> <a href="https://8degreethemes.com/">8Degree Themes</a> - <strong>8Degree Themes</strong> offers 15+ free WordPress themes and 16+ premium WordPress themes carefully crafted with creativity.</p>
23
- </div>
24
- </div>
25
-
26
- </div>
27
- </div>
28
- </div>
29
- </div>
30
- <?php include_once('promobar.php'); ?>
31
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
js/backend.js CHANGED
@@ -3,7 +3,8 @@
3
  //all backend js goes here
4
 
5
  //For uploading icon image
6
- $('#ap-icon-upload-button').live('click', function(e) {
 
7
  $(this).closest('.aps-field-wrapper').find('.aps-error').html('');
8
  e.preventDefault();
9
  var btnClicked = $(this);
3
  //all backend js goes here
4
 
5
  //For uploading icon image
6
+ $('body').on('click', '#ap-icon-upload-button', function(e){
7
+ // $('#ap-icon-upload-button').live('click', function(e) {
8
  $(this).closest('.aps-field-wrapper').find('.aps-error').html('');
9
  e.preventDefault();
10
  var btnClicked = $(this);
readme.txt CHANGED
@@ -3,15 +3,15 @@ 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.5
6
- Tested up to: 5.4.1
7
- Stable tag: 1.7.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Add social media icons on your site | select from pre-designed sets or upload your own | create multiple icon sets | Use it anywhere using shortcode.
12
 
13
  == Description ==
14
- [Homepage](https://accesspressthemes.com) | [Demo](http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons/) | [Documentation](https://accesspressthemes.com/documentation/accesspress-social-icons/) | [Support](https://accesspressthemes.com/support) | [Premium Version](https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839)
15
 
16
  ### Link-up your social profiles right from your website, in an easy and fun way! ###
17
 
@@ -76,7 +76,7 @@ You can have more than one icon sets created and used on the site. A large icon
76
  ★ And many more...
77
 
78
  = Premium Upgrade =
79
- * For premium upgrade, please go [here](https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-social-icons-pro%2F9700839)
80
 
81
  For a easy installation guide checkout the Installation tab above.
82
  For complete information and documentation regarding plugin,please visit below links.
@@ -88,7 +88,6 @@ For complete information and documentation regarding plugin,please visit below l
88
  = Some Useful Links =
89
  * <strong>Support Email</strong>: support@accesspressthemes.com
90
  * <strong>Support Forum Link</strong>: http://accesspressthemes.com/support/
91
- * <strong>Website Link</strong>: http://accesspressthemes.com/
92
  * <strong>Youtube channel link</strong>: https://www.youtube.com/watch?v=TjZNcVG3fDE
93
  * <strong>Facebook link</strong>: https://www.facebook.com/AccessPressThemes
94
 
@@ -99,22 +98,6 @@ For complete information and documentation regarding plugin,please visit below l
99
  = Translators =
100
  * Swedish - Elias Vahman
101
 
102
- == More Resources ==
103
- Themes Compatible With Our Plugin :
104
-
105
- AccessPress Social Icons works best with every WordPress theme. Its even more remarkable when used with popular themes of ours or any other being compatible to almost all of the themes.
106
-
107
- AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :
108
-
109
- [WPAll Club](https://wpallclub.com/) - A complete WordPress resources club. WordPress tutorials, blogs, curated free and premium themes and plugins, WordPress deals, offers, hosting info and more.
110
-
111
- [Premium WordPress Themes](https://themeforest.net/user/accesskeys/portfolio) - 6 premium WordPress themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you.
112
-
113
- [Premium WordPress Plugins](https://codecanyon.net/user/accesskeys/portfolio) - 45+ premium WordPress plugins of many different types. High user ratings, great quality and best sellers in CodeCanyon marketplace.
114
-
115
- [AccessPress Themes](https://accesspressthemes.com/) - AccessPress Themes has 50+ beautiful and elegant, fully responsive, multipurpose themes to meet your need for free and commercial basis.
116
-
117
- [8Degree Themes](https://8degreethemes.com/) - 8Degree Themes offers 15+ free WordPress themes and 16+ premium WordPress themes carefully crafted with creativity.
118
 
119
  == Installation ==
120
  1. Unzip accesspress-social-icons.zip
@@ -138,6 +121,10 @@ Once you install the plugin , you can check some general documentation about how
138
  2. Backend Icon Sets Listings
139
 
140
  == Changelog ==
 
 
 
 
141
  = 1.7.8 =
142
  * Code refinement to solve custom image upload issue.
143
 
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.5
6
+ Tested up to: 5.5
7
+ Stable tag: 1.7.9
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Add social media icons on your site | select from pre-designed sets or upload your own | create multiple icon sets | Use it anywhere using shortcode.
12
 
13
  == Description ==
14
+ [Demo](http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons/) | [Documentation](https://accesspressthemes.com/documentation/accesspress-social-icons/) | [Support](https://accesspressthemes.com/support) | [Premium Version](https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/)
15
 
16
  ### Link-up your social profiles right from your website, in an easy and fun way! ###
17
 
76
  ★ And many more...
77
 
78
  = Premium Upgrade =
79
+ * For premium upgrade, please go [here](https://accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/)
80
 
81
  For a easy installation guide checkout the Installation tab above.
82
  For complete information and documentation regarding plugin,please visit below links.
88
  = Some Useful Links =
89
  * <strong>Support Email</strong>: support@accesspressthemes.com
90
  * <strong>Support Forum Link</strong>: http://accesspressthemes.com/support/
 
91
  * <strong>Youtube channel link</strong>: https://www.youtube.com/watch?v=TjZNcVG3fDE
92
  * <strong>Facebook link</strong>: https://www.facebook.com/AccessPressThemes
93
 
98
  = Translators =
99
  * Swedish - Elias Vahman
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  == Installation ==
103
  1. Unzip accesspress-social-icons.zip
121
  2. Backend Icon Sets Listings
122
 
123
  == Changelog ==
124
+ = 1.7.9 =
125
+ * Checked compatibility with the latest wp version
126
+ * Refined js to fix backend issue
127
+
128
  = 1.7.8 =
129
  * Code refinement to solve custom image upload issue.
130