Social Counter for WordPress – AccessPress Social Counter - Version 1.5.3

Version Description

  • Updated google API key generation procedure
Download this release

Release Info

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

Code changes from version 1.5.2 to 1.5.3

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.2
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.2');
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.3
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.3');
28
  }
29
  /**
30
  * Register of widgets
inc/backend/boards/social-profiles.php CHANGED
@@ -114,7 +114,20 @@
114
  <label><?php _e('Google API Key', 'accesspress-social-counter'); ?></label>
115
  <div class="apsc-option-field">
116
  <input type="text" name="social_profile[googlePlus][api_key]" value="<?php echo esc_attr($apsc_settings['social_profile']['googlePlus']['api_key']);?>"/>
117
- <div class="apsc-option-note"><?php _e('To get your API Key, first create a project/app in <a href="https://console.developers.google.com/project" target="_blank">https://console.developers.google.com/project</a> and then turn on Google+ API from "APIs & auth >APIs inside your project.Then again go to "APIs & auth > APIs > Credentials > Public API access" and then click "CREATE A NEW KEY" button, select the "Browser key" option and click in the "CREATE" button, and then copy your API key and paste in above field.', 'accesspress-social-counter'); ?></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  </div>
119
  </div>
120
  </div>
114
  <label><?php _e('Google API Key', 'accesspress-social-counter'); ?></label>
115
  <div class="apsc-option-field">
116
  <input type="text" name="social_profile[googlePlus][api_key]" value="<?php echo esc_attr($apsc_settings['social_profile']['googlePlus']['api_key']);?>"/>
117
+ <div class="apsc-option-note">
118
+ <p><?php _e('To get your API Key, please go to <a href="https://console.developers.google.com/project" target="_blank">https://console.developers.google.com/project</a> and follow below steps.','accesspress-social-counter');?></p>
119
+ <ol>
120
+ <li> <?php _e('Click on create project.','accesspress-social-counter');?></li>
121
+ <li> <?php _e('Enter project name and click create, A new page will load with newly created app dashboard.','accesspress-social-counter');?></li>
122
+ <li> <?php _e('In the blue API box click on "Enable and manage APIs".','accesspress-social-counter');?></li>
123
+ <li> <?php _e('Enable google+ api by clicking on it.','accesspress-social-counter');?></li>
124
+ <li> <?php _e('Now click on credentials tab.','accesspress-social-counter');?></li>
125
+ <li> <?php _e('When you click on "Create Credentials" button, options will appear.','accesspress-social-counter');?></li>
126
+ <li> <?php _e('Now click on API key, a popup will appear.','accesspress-social-counter');?></li>
127
+ <li> <?php _e('Now click on Browser key.','accesspress-social-counter');?></li>
128
+ <li> <?php _e('Copy the browser key and paste in the above field.','accesspress-social-counter');?></li>
129
+ </ol>
130
+ </div>
131
  </div>
132
  </div>
133
  </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.4
7
- Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -125,6 +125,9 @@ 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.2 =
129
  * Updated FB API to work with new graph API
130
 
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
  5. Backend Cache Settings Section
126
 
127
  == Changelog ==
128
+ = 1.5.3 =
129
+ * Updated google API key generation procedure
130
+
131
  = 1.5.2 =
132
  * Updated FB API to work with new graph API
133