Social Login WordPress Plugin – AccessPress Social Login Lite - Version 3.3.2

Version Description

  • Done the bug fixings for the login redirect issue occurring for the google login.
  • Added the note section for the twitter login issue occurring for "Callback locking" issue.
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 Social Login WordPress Plugin – AccessPress Social Login Lite
Version 3.3.2
Comparing to
See all releases

Code changes from version 3.3.1 to 3.3.2

accesspress-social-login-lite.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin name: Social Login WordPress Plugin - AccessPress Social Login Lite
4
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-login-lite/
5
  Description: A plugin to add various social logins to a site.
6
- version: 3.3.1
7
  Author: AccessPress Themes
8
  Author URI: https://accesspressthemes.com/
9
  Text Domain: accesspress-social-login-lite
@@ -12,7 +12,7 @@
12
  */
13
  //Declearation of the necessary constants for plugin
14
  if( !defined( 'APSL_VERSION' ) ) {
15
- define( 'APSL_VERSION', '3.3.1' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
3
  Plugin name: Social Login WordPress Plugin - AccessPress Social Login Lite
4
  Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-social-login-lite/
5
  Description: A plugin to add various social logins to a site.
6
+ version: 3.3.2
7
  Author: AccessPress Themes
8
  Author URI: https://accesspressthemes.com/
9
  Text Domain: accesspress-social-login-lite
12
  */
13
  //Declearation of the necessary constants for plugin
14
  if( !defined( 'APSL_VERSION' ) ) {
15
+ define( 'APSL_VERSION', '3.3.2' );
16
  }
17
 
18
  if( !defined( 'APSL_IMAGE_DIR' ) ) {
inc/backend/main-page.php CHANGED
@@ -170,8 +170,8 @@
170
  <li>Please note that before creating twiiter API application, You must add your mobile phone to your Twitter profile.</li>
171
  <li>After successful creation of the app. Please go to "Keys and Access Tokens" tabs and get Consumer key(API Key) and Consumer secret(API secret).</li>
172
  <li>Website: <input type='text' value='<?php echo site_url(); ?>' readonly='readonly'/></li>
173
- <li>Callback URL: <input type='text' value='<?php echo site_url(); ?>' readonly='readonly'/></li>
174
- <li><strong>Note: </strong>To get the user's email address please go to app's permission tab and in additional Permissions there you will find a checkbox to request for user email address. Please enable it. To enable it you need to enter privacy policy url and terms of service url.</li>
175
  </ul>
176
 
177
  </div>
170
  <li>Please note that before creating twiiter API application, You must add your mobile phone to your Twitter profile.</li>
171
  <li>After successful creation of the app. Please go to "Keys and Access Tokens" tabs and get Consumer key(API Key) and Consumer secret(API secret).</li>
172
  <li>Website: <input type='text' value='<?php echo site_url(); ?>' readonly='readonly'/></li>
173
+ <li>Callback URL: <input type='text' value='<?php echo site_url(); ?>/wp-login.php?apsl_login_id=twitter_check' readonly='readonly'/></li>
174
+ <li><strong>Note: </strong>To get the user's email address please go to app's permission tab and in additional Permissions there you will find a checkbox to request for user email address. Please enable it. To enable it you need to enter privacy policy url and terms of service url. <br /> If you have enabled the <strong>callback locking</strong> please use the Callback URL as given above.</li>
175
  </ul>
176
 
177
  </div>
inc/frontend/login_check.php CHANGED
@@ -692,7 +692,7 @@ if( !class_exists( 'APSL_Lite_Login_Check_Class' ) ) {
692
  }
693
  $redirect_to = $user_login_url;
694
  $redirect_to = apply_filters( 'login_redirect', $redirect_to );
695
- $redirect_to = urldecode($_COOKIE["apsl_login_redirect_url"]);
696
  // echo "<script> window.close(); window.opener.location.href='$redirect_to'; </script>";
697
  wp_safe_redirect( $redirect_to );
698
  exit();
692
  }
693
  $redirect_to = $user_login_url;
694
  $redirect_to = apply_filters( 'login_redirect', $redirect_to );
695
+ $redirect_to = isset($_COOKIE["apsl_login_redirect_url"]) ? urldecode($_COOKIE["apsl_login_redirect_url"]) : $redirect_to;
696
  // echo "<script> window.close(); window.opener.location.href='$redirect_to'; </script>";
697
  wp_safe_redirect( $redirect_to );
698
  exit();
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social, login, social login, facebook, twitter, google, social connect, s
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.9
7
- Stable tag: 3.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -69,7 +69,7 @@ For more features upgrade to PRO version
69
  - Twitter
70
  - Google
71
  - LinkedIn
72
- - Vkonate
73
  - Instagram
74
  - Foursquare
75
  - Wordpress
@@ -137,6 +137,10 @@ Yes. You can use the AccessPress social login lite anywhere by using shortcode i
137
  4. Backend Other settings Section.
138
 
139
  == Changelog ==
 
 
 
 
140
  = 3.3.1 =
141
  * Done the update of the Facebook SDK to latest.
142
  * Done the bug fixings for the error appearing "force_ssl_login" deprecation.
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.9
7
+ Stable tag: 3.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
69
  - Twitter
70
  - Google
71
  - LinkedIn
72
+ - VKontakte
73
  - Instagram
74
  - Foursquare
75
  - Wordpress
137
  4. Backend Other settings Section.
138
 
139
  == Changelog ==
140
+ = 3.3.2 =
141
+ * Done the bug fixings for the login redirect issue occurring for the google login.
142
+ * Added the note section for the twitter login issue occurring for "Callback locking" issue.
143
+
144
  = 3.3.1 =
145
  * Done the update of the Facebook SDK to latest.
146
  * Done the bug fixings for the error appearing "force_ssl_login" deprecation.