Social Share WordPress Plugin – AccessPress Social Share - Version 4.2.4

Version Description

  • Removed unnecessary codes from plugin's main file.
Download this release

Release Info

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

Code changes from version 4.2.3 to 4.2.4

Files changed (2) hide show
  1. accesspress-social-share.php +4 -5
  2. readme.txt +4 -1
accesspress-social-share.php CHANGED
@@ -4,7 +4,7 @@ defined( 'ABSPATH' ) or die( "No script kiddies please!" );
4
  Plugin name: Social Share WordPress Plugin - AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
- Version: 4.2.3
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain: accesspress-social-share
@@ -30,7 +30,7 @@ if ( !defined( 'APSS_LANG_DIR' ) ) {
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
- define( 'APSS_VERSION', '4.2.3' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
@@ -224,7 +224,6 @@ if ( !class_exists( 'APSS_Class' ) ) {
224
  //add plugins menu in backend
225
  function add_apss_menu() {
226
  add_menu_page( 'AccessPress Social Share', 'AccessPress Social Share', 'manage_options', 'accesspress-social-share', array( $this, 'main_page' ), APSS_IMAGE_DIR . '/apss-icon.png' );
227
- //add_submenu_page( 'accesspress-social-share', __( 'SAccessPress Social Share', 'accesspress-social-share' ), __( 'Social Icons Settings', 'accesspress-social-share' ), 'manage_options', 'accesspress-social-share', array( $this, 'main_page' ) );
228
  }
229
 
230
  //for saving the plugin settings
@@ -443,8 +442,8 @@ if ( !class_exists( 'APSS_Class' ) ) {
443
  $app_id = $apss_settings['api_configuration']['facebook']['app_id'];
444
  $app_secret = $apss_settings['api_configuration']['facebook']['app_secret'];
445
  $api_url = 'https://graph.facebook.com/';
446
- $app_id= $apss_settings['api_configuration']['facebook']['app_id']; // '1779750458903669' ;
447
- $app_secret = $apss_settings['api_configuration']['facebook']['app_secret']; // 'd9adea962115a185d6ab275b33a8fef8';
448
  $url = sprintf(
449
  '%soauth/access_token?client_id=%s&client_secret=%s&grant_type=client_credentials',
450
  $api_url,
4
  Plugin name: Social Share WordPress Plugin - AccessPress Social Share
5
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-share/
6
  Description: A plugin to add various social media shares to a site with dynamic configuration options.
7
+ Version: 4.2.4
8
  Author: AccessPress Themes
9
  Author URI: http://accesspressthemes.com
10
  Text Domain: accesspress-social-share
30
  }
31
 
32
  if ( !defined( 'APSS_VERSION' ) ) {
33
+ define( 'APSS_VERSION', '4.2.4' );
34
  }
35
 
36
  if ( !defined( 'APSS_TEXT_DOMAIN' ) ) {
224
  //add plugins menu in backend
225
  function add_apss_menu() {
226
  add_menu_page( 'AccessPress Social Share', 'AccessPress Social Share', 'manage_options', 'accesspress-social-share', array( $this, 'main_page' ), APSS_IMAGE_DIR . '/apss-icon.png' );
 
227
  }
228
 
229
  //for saving the plugin settings
442
  $app_id = $apss_settings['api_configuration']['facebook']['app_id'];
443
  $app_secret = $apss_settings['api_configuration']['facebook']['app_secret'];
444
  $api_url = 'https://graph.facebook.com/';
445
+ $app_id= $apss_settings['api_configuration']['facebook']['app_id'];
446
+ $app_secret = $apss_settings['api_configuration']['facebook']['app_secret'];
447
  $url = sprintf(
448
  '%soauth/access_token?client_id=%s&client_secret=%s&grant_type=client_credentials',
449
  $api_url,
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social share counter, social share, social media share, social network sha
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.6
7
- Stable tag: 4.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -141,6 +141,9 @@ Yes. You can use the AccessPress social share by using shortcode anywhere you wa
141
  6. Backend Miscellaneous Settings Section
142
 
143
  == Changelog ==
 
 
 
144
  = 4.2.3 =
145
  * Made the plugin object global to remove the content filter hook by other.
146
 
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.6
7
+ Stable tag: 4.2.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
141
  6. Backend Miscellaneous Settings Section
142
 
143
  == Changelog ==
144
+ = 4.2.4 =
145
+ * Removed unnecessary codes from plugin's main file.
146
+
147
  = 4.2.3 =
148
  * Made the plugin object global to remove the content filter hook by other.
149