Social Counter for WordPress – AccessPress Social Counter - Version 1.3.5

Version Description

  • Removed font awesome dependency from frontend.css
  • Fixed some css conflicts for anchor links color and hover color
  • Added font awesome from CDN and removed the local file inclusion
  • Updated notes in how to use section
Download this release

Release Info

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

Code changes from version 1.3.4 to 1.3.5

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.3.4
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.3.4');
28
  }
29
  /**
30
  * Register of widgets
@@ -95,15 +95,15 @@ if (!class_exists('SC_Class')) {
95
  wp_enqueue_script('sc-admin-js', SC_JS_DIR . '/backend.js', array('jquery', 'jquery-ui-sortable'), SC_VERSION);
96
  }
97
 
98
- wp_enqueue_style('fontawesome-css', SC_CSS_DIR . '/font-awesome/font-awesome.min.css',false,SC_VERSION);
99
  }
100
 
101
  /**
102
  * Registers Frontend Assets
103
  * */
104
  function register_frontend_assets() {
105
- wp_enqueue_style('apsc-font-awesome',SC_CSS_DIR.'/font-awesome/font-awesome.css',array(),SC_VERSION);
106
- wp_enqueue_style('apsc-frontend-css', SC_CSS_DIR . '/frontend.css', array('apsc-font-awesome'), SC_VERSION);
107
  }
108
 
109
  /**
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.3.5
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.3.5');
28
  }
29
  /**
30
  * Register of widgets
95
  wp_enqueue_script('sc-admin-js', SC_JS_DIR . '/backend.js', array('jquery', 'jquery-ui-sortable'), SC_VERSION);
96
  }
97
 
98
+ wp_enqueue_style('fontawesome-css', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css',false,SC_VERSION);
99
  }
100
 
101
  /**
102
  * Registers Frontend Assets
103
  * */
104
  function register_frontend_assets() {
105
+ wp_enqueue_style('apsc-font-awesome','https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css',array(),SC_VERSION);
106
+ wp_enqueue_style('apsc-frontend-css', SC_CSS_DIR . '/frontend.css', array(), SC_VERSION);
107
  }
108
 
109
  /**
css/frontend.css CHANGED
@@ -36,6 +36,12 @@
36
 
37
  .apsc-each-profile a{
38
  font-weight:normal;
 
 
 
 
 
 
39
  }
40
 
41
  .apsc-theme-1 .apsc-each-profile a{
36
 
37
  .apsc-each-profile a{
38
  font-weight:normal;
39
+ color:white !important;
40
+ text-decoration:none;
41
+ }
42
+ .apsc-each-profile a:hover{
43
+ color:white !important;
44
+ text-decoration:none !important;
45
  }
46
 
47
  .apsc-theme-1 .apsc-each-profile a{
inc/backend/boards/how-to-use.php CHANGED
@@ -2,8 +2,9 @@
2
  <div class="apsc-tab-wrapper">
3
  <p>To display the social profiles with counter, you can either use [aps-counter] <strong>Shortcode</strong> or you can use <strong>AccessPress Social Counter Widget</strong> from Appearance's widget section.</p>
4
  <p>For the complete documentation please visit:<br/> <a href="https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-counter/" target="_blank">https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-counter/</a></p>
5
- <p>To get the individual count, please use below shortcode</p>
6
  [aps-get-count social_media="facebook/twitter/googlePlus/instagram/youtube/soundcloud/dribbble/posts/comments" count_format="default/comma/short"]
 
7
 
8
  </div>
9
  </div>
2
  <div class="apsc-tab-wrapper">
3
  <p>To display the social profiles with counter, you can either use [aps-counter] <strong>Shortcode</strong> or you can use <strong>AccessPress Social Counter Widget</strong> from Appearance's widget section.</p>
4
  <p>For the complete documentation please visit:<br/> <a href="https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-counter/" target="_blank">https://accesspressthemes.com/documentation/documentation-plugin-instruction-accesspress-social-counter/</a></p>
5
+ <p>To get the individual count, please use below shortcode</p><br /><br />
6
  [aps-get-count social_media="facebook/twitter/googlePlus/instagram/youtube/soundcloud/dribbble/posts/comments" count_format="default/comma/short"]
7
+ <p><strong>Note</strong>: Use any value separated by "/" . For example [aps-get-count social_media="facebook" count_format="short"]</p>
8
 
9
  </div>
10
  </div>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social count, social counter, social counters, social media counters, soci
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
- Stable tag: 1.3.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,6 +125,12 @@ Once you install the plugin , you can check some general documentation about how
125
  5. Backend Cache Settings Section
126
 
127
  == Changelog ==
 
 
 
 
 
 
128
  = 1.3.4 =
129
  * Added count="coma/short/default" parameter for count only shortcode
130
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.2
7
+ Stable tag: 1.3.5
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.3.5 =
129
+ * Removed font awesome dependency from frontend.css
130
+ * Fixed some css conflicts for anchor links color and hover color
131
+ * Added font awesome from CDN and removed the local file inclusion
132
+ * Updated notes in how to use section
133
+
134
  = 1.3.4 =
135
  * Added count="coma/short/default" parameter for count only shortcode
136