Social Icons WordPress Plugin – AccessPress Social Icons - Version 1.8.0

Version Description

  • Some refinement work in the backend.
Download this release

Release Info

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

Code changes from version 1.7.9 to 1.8.0

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.9
7
  * Author:AccessPress Themes
8
  * Author URI:http://accesspressthemes.com/
9
  * Text Domain: accesspress-social-icons
@@ -125,7 +125,7 @@ if (!class_exists('APS_Class')) {
125
  }
126
  if(!defined('APS_VERSION'))
127
  {
128
- define('APS_VERSION','1.7.9');
129
  }
130
  }
131
 
@@ -289,7 +289,7 @@ if (!class_exists('APS_Class')) {
289
  <div class="aps-col-one-fourth">
290
  <div class="aps-set-image-wrapper">
291
  <a href='javascript:void(0);'>
292
- <img src="<?php echo APS_ICONS_DIR . '/png/set' . $i . '/' . $file; ?>" alt="<?php echo esc_attr($filename); ?>" title="<?php echo esc_attr($filename); ?>"/>
293
  <span class="aps-set-image-title"><?php echo esc_attr($filename); ?></span>
294
  </a>
295
  </div>
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.8.0
7
  * Author:AccessPress Themes
8
  * Author URI:http://accesspressthemes.com/
9
  * Text Domain: accesspress-social-icons
125
  }
126
  if(!defined('APS_VERSION'))
127
  {
128
+ define('APS_VERSION','1.8.0');
129
  }
130
  }
131
 
289
  <div class="aps-col-one-fourth">
290
  <div class="aps-set-image-wrapper">
291
  <a href='javascript:void(0);'>
292
+ <img src="<?php esc_attr( APS_ICONS_DIR) . '/png/set' . $i . '/' . $file; ?>" alt="<?php echo esc_attr($filename); ?>" title="<?php echo esc_attr($filename); ?>"/>
293
  <span class="aps-set-image-title"><?php echo esc_attr($filename); ?></span>
294
  </a>
295
  </div>
inc/backend/edit-icon-set.php CHANGED
@@ -385,7 +385,7 @@ $icon_extra = unserialize($icon_set->icon_extra);
385
  <div class="aps-pre-available-icons" style="display: none;">
386
  </div>
387
  <div class="aps-font-awesome-icons" style="display:none">
388
- <?php include_once('font-awesome-icons.php'); ?>
389
  </div>
390
  </div>
391
  </div>
385
  <div class="aps-pre-available-icons" style="display: none;">
386
  </div>
387
  <div class="aps-font-awesome-icons" style="display:none">
388
+ <?php //include_once('font-awesome-icons.php'); ?>
389
  </div>
390
  </div>
391
  </div>
inc/backend/icon-adder.php CHANGED
@@ -18,7 +18,7 @@
18
  <input type="text" id="aps-icon-image" class="required" data-error-msg="<?php _e('Please upload the icon image', 'accesspress-social-icons'); ?>"/>
19
  <input type="button" class="button button-secondary" id="aps-icon-chooser" value="<?php _e('Pre available icons', 'accesspress-social-icons'); ?>"/>
20
  <input class="button button-primary" id="ap-icon-upload-button" type="button" value="Upload Icon"/>
21
- <img src="<?php echo APS_IMAGE_DIR.'/ajax-loader.gif';?>" id="aps-ajax-loader" style="display: none;"/>
22
  </div>
23
  <div class="aps-error"></div>
24
  </div><!--aps-field-wrapper-->
18
  <input type="text" id="aps-icon-image" class="required" data-error-msg="<?php _e('Please upload the icon image', 'accesspress-social-icons'); ?>"/>
19
  <input type="button" class="button button-secondary" id="aps-icon-chooser" value="<?php _e('Pre available icons', 'accesspress-social-icons'); ?>"/>
20
  <input class="button button-primary" id="ap-icon-upload-button" type="button" value="Upload Icon"/>
21
+ <img src="<?php echo esc_attr(APS_IMAGE_DIR).'/ajax-loader.gif';?>" id="aps-ajax-loader" style="display: none;"/>
22
  </div>
23
  <div class="aps-error"></div>
24
  </div><!--aps-field-wrapper-->
inc/backend/icon-themes.php CHANGED
@@ -2,14 +2,14 @@
2
  <div class="aps-theme-chooser" style="display: none;">
3
  <div class="aps-field-wrapper">
4
  <div class="aps-png-themes">
5
- <h3><?php _e('Available Icon Themes', 'accesspress-social-icons'); ?> <img src="<?php echo APS_IMAGE_DIR . '/ajax-loader.gif' ?>" id="aps-icon-theme-loader" style="display: none"/></h3>
6
  <div class="aps-well">
7
  <div>
8
  <?php for ($i = 1; $i <= 12; $i++) {
9
  ?>
10
  <label><input type="radio" id="aps-theme-<?php echo $i;?>" value="<?php echo $i;?>" class="aps-theme aps-png-theme" name="aps_icon_theme" <?php if (isset($_GET['action']) && $icon_extra['icon_set_type'] == 2 && $icon_extra['icon_theme_id'] == $i) { ?>checked="checked"<?php } ?>/>Theme <?php echo $i;?></label>
11
  <div class="aps-theme-previewbox">
12
- <img src="<?php echo APS_IMAGE_DIR . '/preview'.$i.'.jpg' ?>" alt="theme preview" />
13
  </div>
14
  <?php
15
  }
2
  <div class="aps-theme-chooser" style="display: none;">
3
  <div class="aps-field-wrapper">
4
  <div class="aps-png-themes">
5
+ <h3><?php _e('Available Icon Themes', 'accesspress-social-icons'); ?> <img src="<?php echo esc_attr(APS_IMAGE_DIR) . '/ajax-loader.gif' ?>" id="aps-icon-theme-loader" style="display: none"/></h3>
6
  <div class="aps-well">
7
  <div>
8
  <?php for ($i = 1; $i <= 12; $i++) {
9
  ?>
10
  <label><input type="radio" id="aps-theme-<?php echo $i;?>" value="<?php echo $i;?>" class="aps-theme aps-png-theme" name="aps_icon_theme" <?php if (isset($_GET['action']) && $icon_extra['icon_set_type'] == 2 && $icon_extra['icon_theme_id'] == $i) { ?>checked="checked"<?php } ?>/>Theme <?php echo $i;?></label>
11
  <div class="aps-theme-previewbox">
12
+ <img src="<?php echo esc_attr(APS_IMAGE_DIR) . '/preview'.$i.'.jpg' ?>" alt="theme preview" />
13
  </div>
14
  <?php
15
  }
inc/backend/panel-head.php CHANGED
@@ -3,7 +3,7 @@
3
  <div class="aps-row">
4
  <div class="aps-col-logo">
5
  <div class="aps-logo">
6
- <img src="<?php echo APS_IMAGE_DIR.'/logo-social.png'?>" alt="<?php _e('AccessPress Social Icons','accesspress-social-icons')?>"/>
7
  </div>
8
  </div>
9
  <div class="aps-col-socials">
3
  <div class="aps-row">
4
  <div class="aps-col-logo">
5
  <div class="aps-logo">
6
+ <img src="<?php echo esc_attr(APS_IMAGE_DIR).'/logo-social.png'?>" alt="<?php _e('AccessPress Social Icons','accesspress-social-icons')?>"/>
7
  </div>
8
  </div>
9
  <div class="aps-col-socials">
inc/backend/promobar.php CHANGED
@@ -1,6 +1,6 @@
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">
@@ -9,7 +9,7 @@
9
  </div>
10
  </div>
11
  <div>
12
- <a href="http://demo.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.png';?>"></a>
13
  </div>
14
  <div class="aps-demo-links">
15
  <div class="aps-btn-group">
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 esc_attr(APS_IMAGE_DIR).'/accesspress-social-icons-pro-upgrade.png';?>"></a>
4
  </div>
5
  <div class="aps-demo-links">
6
  <div class="aps-btn-group">
9
  </div>
10
  </div>
11
  <div>
12
+ <a href="http://demo.accesspressthemes.com/wordpress-plugins/accesspress-social-icons-pro/" target="_blank" class="ap-upgrade-first"><img src="<?php echo esc_attr(APS_IMAGE_DIR).'/accesspress-social-icons-pro.png';?>"></a>
13
  </div>
14
  <div class="aps-demo-links">
15
  <div class="aps-btn-group">
inc/backend/theme-icon-set.php CHANGED
@@ -14,7 +14,7 @@
14
  <div class="aps-col-full">
15
  <div class="aps-icon-preview form-field">
16
  <label><?php _e('Icon Preview', 'accesspress-social-icons'); ?></label>
17
- <img src="<?php echo APS_ICONS_DIR . '/' . $sub_folder . '/' . $folder . '/' . $file; ?>" data-image-name="<?php echo esc_attr($filename); ?>"/>
18
  </div>
19
 
20
  <div class="aps-field-wrapper form-field">
@@ -82,7 +82,7 @@
82
  </div>
83
  </div>
84
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][image_name]" value="<?php echo esc_attr($filename); ?>" />
85
- <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][image]" value="<?php echo APS_ICONS_DIR . '/' . $sub_folder . '/' . $folder . '/' . $file; ?>" class="set_image_reference" data-image-name="<?php echo $filename;?>"/>
86
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_type]" value="none"/>
87
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_thickness]" value="0"/>
88
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_color]" value=""/>
14
  <div class="aps-col-full">
15
  <div class="aps-icon-preview form-field">
16
  <label><?php _e('Icon Preview', 'accesspress-social-icons'); ?></label>
17
+ <img src="<?php echo esc_attr(APS_ICONS_DIR) . '/' . $sub_folder . '/' . $folder . '/' . $file; ?>" data-image-name="<?php echo esc_attr($filename); ?>"/>
18
  </div>
19
 
20
  <div class="aps-field-wrapper form-field">
82
  </div>
83
  </div>
84
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][image_name]" value="<?php echo esc_attr($filename); ?>" />
85
+ <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][image]" value="<?php echo esc_attr(APS_ICONS_DIR) . '/' . $sub_folder . '/' . $folder . '/' . $file; ?>" class="set_image_reference" data-image-name="<?php echo esc_attr($filename);?>"/>
86
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_type]" value="none"/>
87
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_thickness]" value="0"/>
88
  <input type="hidden" name="icons[<?php echo esc_attr($filename); ?>][border_color]" value=""/>
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: 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
 
@@ -117,10 +117,13 @@ Yes you can build your own sets or choose from pre available sets as per your re
117
  Once you install the plugin , you can check some general documentation about how to use the plugin in the "How to use" page of the plugin.Complete documentation can be found [here](https://accesspressthemes.com/documentation/accesspress-social-icons/).
118
 
119
  == Screenshots ==
120
- 1. Backend Icons Sets Add Settngs Options
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
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.1
7
+ Stable tag: 1.8.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
117
  Once you install the plugin , you can check some general documentation about how to use the plugin in the "How to use" page of the plugin.Complete documentation can be found [here](https://accesspressthemes.com/documentation/accesspress-social-icons/).
118
 
119
  == Screenshots ==
120
+ 1. Backend Icons Sets Add Settings Options
121
  2. Backend Icon Sets Listings
122
 
123
  == Changelog ==
124
+ = 1.8.0 =
125
+ * Some refinement work in the backend.
126
+
127
  = 1.7.9 =
128
  * Checked compatibility with the latest wp version
129
  * Refined js to fix backend issue