Social Counter for WordPress – AccessPress Social Counter - Version 1.5.4

Version Description

  • Changed link for facebook and google to https
  • Updated heading notes layout in settings page
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Counter for WordPress – AccessPress Social Counter
Version 1.5.4
Comparing to
See all releases

Code changes from version 1.5.3 to 1.5.4

accesspress-social-counter.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: AccessPress Social Counter
4
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-counter/
5
  * Description: A plugin to display your social accounts fans, subscribers and followers number on your website with handful of backend settings and interface.
6
- * Version: 1.5.3
7
  * Author: AccessPress Themes
8
  * Author URI: http://accesspressthemes.com
9
  * Text Domain: aps-counter
@@ -24,7 +24,7 @@ if (!defined('SC_CSS_DIR')) {
24
  define('SC_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('SC_VERSION')) {
27
- define('SC_VERSION', '1.5.3');
28
  }
29
  /**
30
  * Register of widgets
3
  * Plugin Name: AccessPress Social Counter
4
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-counter/
5
  * Description: A plugin to display your social accounts fans, subscribers and followers number on your website with handful of backend settings and interface.
6
+ * Version: 1.5.4
7
  * Author: AccessPress Themes
8
  * Author URI: http://accesspressthemes.com
9
  * Text Domain: aps-counter
24
  define('SC_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('SC_VERSION')) {
27
+ define('SC_VERSION', '1.5.4');
28
  }
29
  /**
30
  * Register of widgets
inc/backend/settings.php CHANGED
@@ -34,8 +34,8 @@ $apsc_settings = $this->apsc_settings;
34
 
35
  <div class="apsc-title"><?php _e('AccessPress Social Counter', 'accesspress-social-counter'); ?></div>
36
  </div>
37
- <div class="apsc-extra-note"><?php _e('Note: Please check the System Status if your server system status meets all the requirement for the plugin before you use the plugin.<br/><br/> If you find any unsual issues then please check by deleting cache using the "Delete Cache" button below.And if you found our plugin helpful and like our plugin then please don\'t forget to give us a rating <a href="https://wordpress.org/support/view/plugin-reviews/accesspress-social-counter#postform"> here </a>. Its the only way to keep us motivated to make the plugin even better.
38
- ','accesspress-social-counter');?></div>
39
  <?php if(isset($_SESSION['apsc_message'])){?><div class="apsc-success-message"><p><?php echo $_SESSION['apsc_message'];unset($_SESSION['apsc_message']);?></p></div><?php }?>
40
  <div class="apsc-boards-wrapper">
41
  <ul class="apsc-settings-tabs">
34
 
35
  <div class="apsc-title"><?php _e('AccessPress Social Counter', 'accesspress-social-counter'); ?></div>
36
  </div>
37
+ <p class="description"><?php _e('Note: Please check the System Status if your server system status meets all the requirement for the plugin before you use the plugin.<br/><br/> If you find any unsual issues then please check by deleting cache using the "Delete Cache" button below.And if you like our plugin then please don\'t forget to give us a rating <a href="https://wordpress.org/support/view/plugin-reviews/accesspress-social-counter#postform" target="_blank"> here </a>. Its the only way to keep us motivated to make the plugin even better.
38
+ ','accesspress-social-counter');?></p>
39
  <?php if(isset($_SESSION['apsc_message'])){?><div class="apsc-success-message"><p><?php echo $_SESSION['apsc_message'];unset($_SESSION['apsc_message']);?></p></div><?php }?>
40
  <div class="apsc-boards-wrapper">
41
  <ul class="apsc-settings-tabs">
inc/frontend/shortcode.php CHANGED
@@ -20,7 +20,7 @@ $format = isset($apsc_settings['counter_format'])?$apsc_settings['counter_format
20
  case 'facebook':
21
  $facebook_page_id = $apsc_settings['social_profile']['facebook']['page_id'];
22
  ?>
23
- <a class="apsc-facebook-icon clearfix" href="<?php echo "http://facebook.com/" . $facebook_page_id; ?>" target="_blank">
24
  <div class="apsc-inner-block">
25
  <span class="social-icon"><i class="fa fa-facebook apsc-facebook"></i><span class="media-name">Facebook</span></span>
26
  <span class="apsc-count"><?php echo $count; ?></span><span class="apsc-media-type">Fans</span>
@@ -30,7 +30,7 @@ $format = isset($apsc_settings['counter_format'])?$apsc_settings['counter_format
30
  break;
31
  case 'twitter':
32
  ?>
33
- <a class="apsc-twitter-icon clearfix" href="<?php echo 'http://twitter.com/'.$apsc_settings['social_profile']['twitter']['username'];?>" target="_blank">
34
  <div class="apsc-inner-block">
35
  <span class="social-icon"><i class="fa fa-twitter apsc-twitter"></i><span class="media-name">Twitter</span></span>
36
  <span class="apsc-count"><?php echo $count; ?></span><span class="apsc-media-type">Followers</span>
@@ -86,7 +86,7 @@ $format = isset($apsc_settings['counter_format'])?$apsc_settings['counter_format
86
  <?php
87
  break;
88
  case 'dribbble':
89
- $social_profile_url = 'http://dribbble.com/'.$apsc_settings['social_profile']['dribbble']['username'];
90
  ?>
91
  <a class="apsc-dribble-icon clearfix" href="<?php echo $social_profile_url; ?>" target="_blank">
92
  <div class="apsc-inner-block">
20
  case 'facebook':
21
  $facebook_page_id = $apsc_settings['social_profile']['facebook']['page_id'];
22
  ?>
23
+ <a class="apsc-facebook-icon clearfix" href="<?php echo "https://facebook.com/" . $facebook_page_id; ?>" target="_blank">
24
  <div class="apsc-inner-block">
25
  <span class="social-icon"><i class="fa fa-facebook apsc-facebook"></i><span class="media-name">Facebook</span></span>
26
  <span class="apsc-count"><?php echo $count; ?></span><span class="apsc-media-type">Fans</span>
30
  break;
31
  case 'twitter':
32
  ?>
33
+ <a class="apsc-twitter-icon clearfix" href="<?php echo 'https://twitter.com/'.$apsc_settings['social_profile']['twitter']['username'];?>" target="_blank">
34
  <div class="apsc-inner-block">
35
  <span class="social-icon"><i class="fa fa-twitter apsc-twitter"></i><span class="media-name">Twitter</span></span>
36
  <span class="apsc-count"><?php echo $count; ?></span><span class="apsc-media-type">Followers</span>
86
  <?php
87
  break;
88
  case 'dribbble':
89
+ $social_profile_url = 'https://dribbble.com/'.$apsc_settings['social_profile']['dribbble']['username'];
90
  ?>
91
  <a class="apsc-dribble-icon clearfix" href="<?php echo $social_profile_url; ?>" target="_blank">
92
  <div class="apsc-inner-block">
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Access Keys
3
  Tags: social count, social counter, social counters, social media counters, social media, social network, social profiles counter, social profile count, social profile, social icons, social icon counter
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
- Tested up to: 4.4
7
- Stable tag: 1.5.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,6 +125,10 @@ Once you install the plugin , you can check some general documentation about how
125
  5. Backend Cache Settings Section
126
 
127
  == Changelog ==
 
 
 
 
128
  = 1.5.3 =
129
  * Updated google API key generation procedure
130
 
3
  Tags: social count, social counter, social counters, social media counters, social media, social network, social profiles counter, social profile count, social profile, social icons, social icon counter
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
+ Tested up to: 4.5
7
+ Stable tag: 1.5.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
125
  5. Backend Cache Settings Section
126
 
127
  == Changelog ==
128
+ = 1.5.4 =
129
+ * Changed link for facebook and google to https
130
+ * Updated heading notes layout in settings page
131
+
132
  = 1.5.3 =
133
  * Updated google API key generation procedure
134