Social Login - Version 7.2.4

Version Description

  • Made contact us changes.
  • Storing firstname and lastname issue solved.
  • Changed datatype of column user_id in the mo_openid_linked_user table.
  • Added end tour button.
Download this release

Release Info

Developer cyberlord92
Plugin Icon 128x128 Social Login
Version 7.2.4
Comparing to
See all releases

Code changes from version 7.2.3 to 7.2.4

class-mo-openid-social-login-functions.php CHANGED
@@ -111,7 +111,7 @@ function mo_openid_initialize_social_login(){
111
 
112
  $return_url = strpos($base_return_url, '?') !== false ? urlencode( $base_return_url . '&option=moopenid' ): urlencode( $base_return_url . '?option=moopenid' );
113
 
114
- $url = get_option('mo_openid_host_name') . '/moas/openid-connect/client-app/authenticate?token=' . $encoded_token . '&userdata=' . $userdata. '&id=' . get_option('mo_openid_admin_customer_key') . '&encrypted=true&app=' . $_REQUEST['app_name'] . '_oauth&returnurl=' . $return_url . '&encrypt_response=true';
115
  wp_redirect($url);
116
  exit;
117
  }
@@ -311,7 +311,7 @@ function mo_openid_process_social_login(){
311
 
312
  $decrypted_app_name = mo_openid_filter_app_name($decrypted_app_name);
313
 
314
- if(isset( $raw_first_name ) && isset( $raw_last_name )){
315
  if(strcmp($decrypted_first_name, $decrypted_last_name)!=0)
316
  $user_full_name = $decrypted_first_name.' '.$decrypted_last_name;
317
  else
@@ -321,8 +321,8 @@ function mo_openid_process_social_login(){
321
  }
322
  else{
323
  $user_full_name = $decrypted_user_name;
324
- $first_name = '';
325
- $last_name = '';
326
  }
327
  //Set Display Picture
328
  $user_picture = $decrypted_user_picture;
111
 
112
  $return_url = strpos($base_return_url, '?') !== false ? urlencode( $base_return_url . '&option=moopenid' ): urlencode( $base_return_url . '?option=moopenid' );
113
 
114
+ $url = 'https://login.xecurify.com/moas/openid-connect/client-app/authenticate?token=' . $encoded_token . '&userdata=' . $userdata. '&id=' . get_option('mo_openid_admin_customer_key') . '&encrypted=true&app=' . $_REQUEST['app_name'] . '_oauth_xecurify&returnurl=' . $return_url . '&encrypt_response=true';
115
  wp_redirect($url);
116
  exit;
117
  }
311
 
312
  $decrypted_app_name = mo_openid_filter_app_name($decrypted_app_name);
313
 
314
+ if(isset( $decrypted_first_name ) && isset( $decrypted_last_name )){
315
  if(strcmp($decrypted_first_name, $decrypted_last_name)!=0)
316
  $user_full_name = $decrypted_first_name.' '.$decrypted_last_name;
317
  else
321
  }
322
  else{
323
  $user_full_name = $decrypted_user_name;
324
+ $first_name = isset( $decrypted_first_name )? $decrypted_first_name :'';
325
+ $last_name = isset( $decrypted_last_name )? $decrypted_last_name: '' ;
326
  }
327
  //Set Display Picture
328
  $user_picture = $decrypted_user_picture;
class-mo-openid-sso-customer.php CHANGED
@@ -286,10 +286,10 @@ class CustomerOpenID {
286
  'email' => array(
287
  'customerKey' => $customerKey,
288
  'fromEmail' => $fromEmail,
289
- 'bccEmail' => 'socialloginsupport@miniorange.com',
290
- 'fromName' => 'miniOrange',
291
- 'toEmail' => 'socialloginsupport@miniorange.com',
292
- 'toName' => 'socialloginsupport@miniorange.com',
293
  'subject' => $subject,
294
  'content' => $content
295
  ),
@@ -328,6 +328,7 @@ class CustomerOpenID {
328
  'lastName' => $last_name,
329
  'company' => $company,
330
  'email' => $email,
 
331
  'phone' => $phone,
332
  'query' => $query
333
  );
286
  'email' => array(
287
  'customerKey' => $customerKey,
288
  'fromEmail' => $fromEmail,
289
+ 'bccEmail' => 'socialloginsupport@xecurify.com',
290
+ 'fromName' => 'miniOrange',
291
+ 'toEmail' => 'socialloginsupport@xecurify.com',
292
+ 'toName' => 'socialloginsupport@xecurify.com',
293
  'subject' => $subject,
294
  'content' => $content
295
  ),
328
  'lastName' => $last_name,
329
  'company' => $company,
330
  'email' => $email,
331
+ 'ccEmail' => 'socialloginsupport@xecurify.com',
332
  'phone' => $phone,
333
  'query' => $query
334
  );
miniorange_openid_sso_settings.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Social Login, Social Sharing by miniOrange
4
  * Plugin URI: https://plugins.miniorange.com/social-login-social-sharing
5
  * Description: Allow your users to login, comment and share with social login apps like Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
6
- * Version: 7.2.3
7
  * Author: social login (miniOrange)
8
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
  */
@@ -13,7 +13,7 @@ include_once dirname( __FILE__ ) . '/class-mo-openid-login-widget.php';
13
  require('class-mo-openid-sso-customer.php');
14
  require('class-mo-openid-sso-shortcode-buttons.php');
15
  require('class-mo-openid-social-comment.php');
16
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.2.3');
17
  include dirname( __FILE__ ) . '/mo_openid_feedback_form.php';
18
  class Miniorange_OpenID_SSO {
19
 
@@ -246,9 +246,6 @@ Thank you.';
246
 
247
  add_option( 'custom_otp_msg',$message);
248
 
249
-
250
-
251
-
252
  //account linking
253
  add_option( 'mo_account_linking_title','Account Linking');
254
  add_option( 'mo_account_linking_new_user_button','Create a new account?');
@@ -257,8 +254,6 @@ Thank you.';
257
  add_option( 'mo_account_linking_existing_user_instruction','If you already have an existing account with a different email adddress and want to link this account with that, click on <b>Link to an existing account</b>.');
258
  add_option( 'mo_account_linking_extra_instruction','You will be redirected to login page to login to your existing account.');
259
 
260
-
261
-
262
  //woocommerce display options
263
  add_option( 'mo_openid_woocommerce_login_form','0');
264
  add_option( 'mo_openid_woocommerce_before_login_form','0');
@@ -329,13 +324,25 @@ Thank you.';
329
  TABLE_SCHEMA='$wpdb->dbname'
330
  AND COLUMN_NAME = 'timestamp'");
331
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  // if table mo_openid_linked_user doesn't exist or the 'timestamp' column doesn't exist
333
  if($wpdb->get_var("show tables like '$table_name'") != $table_name || empty($time) ) {
334
  $sql = "CREATE TABLE $table_name (
335
  id mediumint(9) NOT NULL AUTO_INCREMENT,
336
  linked_social_app varchar(55) NOT NULL,
337
  linked_email varchar(55) NOT NULL,
338
- user_id mediumint(10) NOT NULL,
339
  identifier VARCHAR(100) NOT NULL,
340
  timestamp datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
341
  PRIMARY KEY (id)
@@ -421,7 +428,7 @@ Thank you.';
421
 
422
  function mo_openid_activate() {
423
  add_option('Activated_Plugin','Plugin-Slug');
424
- update_option( 'mo_openid_host_name', 'https://auth.miniorange.com' );
425
  }
426
 
427
  function mo_openid_add_social_login(){
@@ -582,7 +589,7 @@ Thank you.';
582
  }
583
 
584
  function mo_login_widget_openid_options() {
585
- update_option( 'mo_openid_host_name', 'https://auth.miniorange.com' );
586
  mo_register_openid();
587
  }
588
 
3
  * Plugin Name: Social Login, Social Sharing by miniOrange
4
  * Plugin URI: https://plugins.miniorange.com/social-login-social-sharing
5
  * Description: Allow your users to login, comment and share with social login apps like Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
6
+ * Version: 7.2.4
7
  * Author: social login (miniOrange)
8
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
  */
13
  require('class-mo-openid-sso-customer.php');
14
  require('class-mo-openid-sso-shortcode-buttons.php');
15
  require('class-mo-openid-social-comment.php');
16
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.2.4');
17
  include dirname( __FILE__ ) . '/mo_openid_feedback_form.php';
18
  class Miniorange_OpenID_SSO {
19
 
246
 
247
  add_option( 'custom_otp_msg',$message);
248
 
 
 
 
249
  //account linking
250
  add_option( 'mo_account_linking_title','Account Linking');
251
  add_option( 'mo_account_linking_new_user_button','Create a new account?');
254
  add_option( 'mo_account_linking_existing_user_instruction','If you already have an existing account with a different email adddress and want to link this account with that, click on <b>Link to an existing account</b>.');
255
  add_option( 'mo_account_linking_extra_instruction','You will be redirected to login page to login to your existing account.');
256
 
 
 
257
  //woocommerce display options
258
  add_option( 'mo_openid_woocommerce_login_form','0');
259
  add_option( 'mo_openid_woocommerce_before_login_form','0');
324
  TABLE_SCHEMA='$wpdb->dbname'
325
  AND COLUMN_NAME = 'timestamp'");
326
 
327
+ $data_type=$wpdb->get_var("SELECT DATA_TYPE
328
+ FROM information_schema.COLUMNS
329
+ WHERE
330
+ TABLE_SCHEMA='$wpdb->dbname'
331
+ AND TABLE_NAME = '$table_name'
332
+ AND COLUMN_NAME = 'user_id'");
333
+ if($data_type=="mediumint")
334
+ {
335
+ $wpdb->get_var("ALTER TABLE $table_name CHANGE `user_id` `user_id` BIGINT(20) NOT NULL");
336
+
337
+ }
338
+
339
  // if table mo_openid_linked_user doesn't exist or the 'timestamp' column doesn't exist
340
  if($wpdb->get_var("show tables like '$table_name'") != $table_name || empty($time) ) {
341
  $sql = "CREATE TABLE $table_name (
342
  id mediumint(9) NOT NULL AUTO_INCREMENT,
343
  linked_social_app varchar(55) NOT NULL,
344
  linked_email varchar(55) NOT NULL,
345
+ user_id BIGINT(20) NOT NULL,
346
  identifier VARCHAR(100) NOT NULL,
347
  timestamp datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
348
  PRIMARY KEY (id)
428
 
429
  function mo_openid_activate() {
430
  add_option('Activated_Plugin','Plugin-Slug');
431
+ update_option( 'mo_openid_host_name', 'https://login.xecurify.com' );
432
  }
433
 
434
  function mo_openid_add_social_login(){
589
  }
590
 
591
  function mo_login_widget_openid_options() {
592
+ update_option( 'mo_openid_host_name', 'https://login.xecurify.com' );
593
  mo_register_openid();
594
  }
595
 
miniorange_openid_sso_settings_page.php CHANGED
@@ -1459,7 +1459,7 @@ function customize_email_verify_img(){
1459
  return (
1460
  tour.getCurrentStep()===5 // Is this the last step?
1461
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/6</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
1462
- : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;\" data-role=\"next\">Next &raquo;</button><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:right;margin-left: 53%;\">"+ (tour.getCurrentStep()+1)+"/6</h4></div></div></div></div>"
1463
  );
1464
  }
1465
  });
@@ -2001,7 +2001,7 @@ function mo_openid_app_comment() {
2001
  return (
2002
  tour.getCurrentStep()===4// Is this the last step?
2003
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
2004
- : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;\" data-role=\"next\">Next &raquo;</button><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:right;margin-left: 53%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div></div></div>"
2005
  );
2006
  }
2007
  });
@@ -2771,7 +2771,7 @@ function mo_openid_other_settings(){
2771
  return (
2772
  tour.getCurrentStep()===4 // Is this the last step?
2773
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
2774
- : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;\" data-role=\"next\">Next &raquo;</button><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:right;margin-left: 53%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div></div></div>"
2775
  );
2776
  }
2777
  });
@@ -3400,7 +3400,7 @@ function mo_openid_pricing_info(){
3400
  </script>
3401
 
3402
  <h3><b><span style="color:#da7587;font-weight:bold;">Refund Policy -</h3>
3403
- <p><b>At miniOrange, we want to ensure you are 100% happy with your purchase. If the premium plugin you purchased is not working as advertised and you've attempted to resolve any issues with our support team, which couldn't get resolved then we will refund the whole amount within 10 days of the purchase. Please email us at <a href="mailto:info@miniorange.com"><i>info@miniorange.com</i></a> for any queries regarding the return policy.</b></p>
3404
  <b>Not applicable for -</b>
3405
  <ol>
3406
  <li>Returns that are because of features that are not advertised.</li>
@@ -3652,7 +3652,7 @@ function mo_openid_troubleshoot_info(){ ?>
3652
  <div id="openid_question19_desc">
3653
  Please check if you have an Adblock extension installed on your browser where you are checking the plugin. If you do, the Adblock extension will have a setting to block Social buttons. Uncheck this option.
3654
  <br/><br/>
3655
- If you don't have Adblock installed and still face this issue, please contact us using the Support form on the right or mail us at info@miniorange.com.
3656
  </div>
3657
 
3658
  </div>
@@ -4212,7 +4212,7 @@ function miniorange_openid_support(){
4212
 
4213
  <button type="button" class="button button-primary button-large"style=" margin-top: -5%;margin-left: 23%;" onclick="wordpress_support();"> WordPress Support Forum</button>
4214
  </form>
4215
- <p style="margin-top: 7%;">If you want custom features in the plugin, just drop an email at <a href="mailto:info@miniorange.com">info@miniorange.com</a>.</p>
4216
  </div>
4217
  </div>
4218
  </div>
1459
  return (
1460
  tour.getCurrentStep()===5 // Is this the last step?
1461
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/6</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
1462
+ : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"><div style='margin-top: -6%;' ><h4>"+ (tour.getCurrentStep()+1)+"/6</h4></div> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;margin-left: 25%;\" data-role=\"next\">Next &raquo;</button><button class=\"button button-primary button-large\" data-role=\"end\" style='margin-left: 7%'>End</button></div></div></div>"
1463
  );
1464
  }
1465
  });
2001
  return (
2002
  tour.getCurrentStep()===4// Is this the last step?
2003
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
2004
+ : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"><div style='margin-top: -6%;' ><h4>"+ (tour.getCurrentStep()+1)+"/5</h4></div> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;margin-left: 25%;\" data-role=\"next\">Next &raquo;</button><button class=\"button button-primary button-large\" data-role=\"end\" style='margin-left: 7%'>End</button></div></div></div>"
2005
  );
2006
  }
2007
  });
2771
  return (
2772
  tour.getCurrentStep()===4 // Is this the last step?
2773
  ? "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\"><div style=\"width:47%;margin-top: -7%;\"><h4 style=\"float:left;margin-top:30%;margin-left:30%;\">"+ (tour.getCurrentStep()+1)+"/5</h4></div></div>&nbsp;&nbsp; <button class=\"button button-primary button-large\" data-role=\"end\">Done</button> </div> </div>"
2774
+ : "<div class=\"mo2f_popover\" role=\"tooltip\"> <div class=\"mo2f_arrow\" ></div> <h3 class=\"mo2f_popover-header\" style=\"margin-top:0px;\"></h3> <div class=\"mo2f_popover-body\"></div> <div class=\"mo2f_popover-navigation\"> <div class=\"mo2f_tour_btn-group\" style=\"width: 100%;\"><div style='margin-top: -6%;' ><h4>"+ (tour.getCurrentStep()+1)+"/5</h4></div> <button class=\"mo2f_tour_btn mo2f_tour_btn-sm mo2f_tour_btn-secondary mo2f_tour_btn_next-success\" style=\"width: 32%;height: 0%;margin-left: 25%;\" data-role=\"next\">Next &raquo;</button><button class=\"button button-primary button-large\" data-role=\"end\" style='margin-left: 7%'>End</button></div></div></div>"
2775
  );
2776
  }
2777
  });
3400
  </script>
3401
 
3402
  <h3><b><span style="color:#da7587;font-weight:bold;">Refund Policy -</h3>
3403
+ <p><b>At miniOrange, we want to ensure you are 100% happy with your purchase. If the premium plugin you purchased is not working as advertised and you've attempted to resolve any issues with our support team, which couldn't get resolved then we will refund the whole amount within 10 days of the purchase. Please email us at <a href="mailto:info@xecurify.com"><i>info@xecurify.com</i></a> for any queries regarding the return policy.</b></p>
3404
  <b>Not applicable for -</b>
3405
  <ol>
3406
  <li>Returns that are because of features that are not advertised.</li>
3652
  <div id="openid_question19_desc">
3653
  Please check if you have an Adblock extension installed on your browser where you are checking the plugin. If you do, the Adblock extension will have a setting to block Social buttons. Uncheck this option.
3654
  <br/><br/>
3655
+ If you don't have Adblock installed and still face this issue, please contact us using the Support form on the right or mail us at info@xecurify.com.
3656
  </div>
3657
 
3658
  </div>
4212
 
4213
  <button type="button" class="button button-primary button-large"style=" margin-top: -5%;margin-left: 23%;" onclick="wordpress_support();"> WordPress Support Forum</button>
4214
  </form>
4215
+ <p style="margin-top: 7%;">If you want custom features in the plugin, just drop an email at <a href="mailto:info@xecurify.com">info@xecurify.com</a>.</p>
4216
  </div>
4217
  </div>
4218
  </div>
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.miniorange.com
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.2
7
- Stable tag: 7.2.3
8
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
 
10
  Social Login with Google, Facebook, Twitter, Vkontakte, LinkedIn and more. GDPR compliant. Social sharing and social comments. Quickest setup.
@@ -130,7 +130,7 @@ For more support or info email us at info@miniorange.com or <a href="https://www
130
 
131
  = What are the steps to download and activate the social login premium plugin? =
132
  Please follow the steps given below to download and activate the social login premium plugin:
133
- 1. Login to miniOrange dashboard <a href="https://auth.miniorange.com/moas/login" >here</a>.
134
  2. Click on License option on the left-hand menu.
135
  3. You will see the download the social login premium plugin link Click on Download Plugin and extract the zip.
136
  4. Do not delete the older files just replace the old plugin files with the new plugin.
@@ -175,6 +175,12 @@ Please email us at info@miniorange.com. You can also submit your query from the
175
 
176
 
177
  == Changelog ==
 
 
 
 
 
 
178
  = 7.2.3 =
179
  * Fixed Google button UI issue.
180
  * Added compatibility with WordPress 5.2
@@ -636,6 +642,12 @@ SECURITY FIXES
636
  * First version of Social Login, Social Sharing plugin.
637
 
638
  == Upgrade Notice ==
 
 
 
 
 
 
639
  = 7.2.3 =
640
  * Fixed Google button UI issue.
641
  * Added compatibility with WordPress 5.2
4
  Tags: social login, facebook login, google login, twitter login, Vkontakte login, social, facebook, twitter, google, login, google, social connect, social network login, social plugin, Vkontakte, LinkedIn
5
  Requires at least: 2.0.2
6
  Tested up to: 5.2
7
+ Stable tag: 7.2.4
8
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
9
 
10
  Social Login with Google, Facebook, Twitter, Vkontakte, LinkedIn and more. GDPR compliant. Social sharing and social comments. Quickest setup.
130
 
131
  = What are the steps to download and activate the social login premium plugin? =
132
  Please follow the steps given below to download and activate the social login premium plugin:
133
+ 1. Login to miniOrange dashboard <a href="https://login.xecurify.com/moas/login" >here</a>.
134
  2. Click on License option on the left-hand menu.
135
  3. You will see the download the social login premium plugin link Click on Download Plugin and extract the zip.
136
  4. Do not delete the older files just replace the old plugin files with the new plugin.
175
 
176
 
177
  == Changelog ==
178
+ = 7.2.4 =
179
+ * Made contact us changes.
180
+ * Storing firstname and lastname issue solved.
181
+ * Changed datatype of column user_id in the mo_openid_linked_user table.
182
+ * Added end tour button.
183
+
184
  = 7.2.3 =
185
  * Fixed Google button UI issue.
186
  * Added compatibility with WordPress 5.2
642
  * First version of Social Login, Social Sharing plugin.
643
 
644
  == Upgrade Notice ==
645
+ = 7.2.4 =
646
+ * Made contact us changes.
647
+ * Storing firstname and lastname issue solved.
648
+ * Changed datatype of column user_id in the mo_openid_linked_user table.
649
+ * Added end tour button.
650
+
651
  = 7.2.3 =
652
  * Fixed Google button UI issue.
653
  * Added compatibility with WordPress 5.2