Social Login - Version 5.1.3

Version Description

  • Improved Social Login for non-English characters
  • Changed Payment Plans
  • Compatibility with 4.8
Download this release

Release Info

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

Code changes from version 5.1.2 to 5.1.3

class-mo-openid-login-widget.php CHANGED
@@ -795,13 +795,19 @@ class mo_openid_sharing_ver_wid extends WP_Widget {
795
  $decrypted_first_name = isset($_POST['firstName']) ? mo_openid_decrypt($_POST['firstName']): '';
796
  $decrypted_last_name = isset($_POST['lastName']) ? mo_openid_decrypt($_POST['lastName']): '';
797
 
798
- $decrypted_email= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_email);
799
- $decrypted_user_name= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_user_name);
800
- $decrypted_user_picture= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_user_picture);
801
- $decrypted_user_url= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_user_url);
802
- $decrypted_first_name= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_first_name);
803
- $decrypted_last_name= preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $decrypted_last_name);
804
-
 
 
 
 
 
 
805
 
806
  //Calculate user email
807
  if( isset( $decrypted_email ) && strcmp($decrypted_email,'')!=0 ) {
@@ -845,7 +851,7 @@ class mo_openid_sharing_ver_wid extends WP_Widget {
845
  if( $user_email ) {
846
  global $wpdb;
847
  $user_email = sanitize_email($user_email);
848
- $username = preg_replace('/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/', '', $username);
849
  $username = strtolower(str_replace(" ","",$username));
850
 
851
  $orignal_username = '';
@@ -864,7 +870,7 @@ class mo_openid_sharing_ver_wid extends WP_Widget {
864
  $user_email = $server_name[$index] . '_' . get_option('mo_openid_user_number') . '@social-user.com';
865
  update_option('mo_openid_user_number', get_option('mo_openid_user_number') + 1);
866
  } else {
867
- $user_full_name = preg_replace('/[\x00-\x09\x0B\x0C\x0E-\x1F\x7F]/', '', $user_full_name);
868
  $username = strtolower(str_replace(" ","",$user_full_name));
869
  $user_email = str_replace(" ","_",$user_full_name).'@social-user.com';
870
  }
@@ -892,6 +898,7 @@ class mo_openid_sharing_ver_wid extends WP_Widget {
892
  $_SESSION['mo_login'] = true;
893
  do_action( 'wp_login', $user->user_login, $user );
894
  wp_set_auth_cookie( $user_id, true );
 
895
  }
896
  else { // this user is a guest
897
  if(get_option('mo_openid_auto_register_enable')) {
@@ -976,18 +983,9 @@ class mo_openid_sharing_ver_wid extends WP_Widget {
976
  }
977
 
978
  function mo_openid_disabled_register_message() {
979
- wp_enqueue_script('thickbox');
980
- wp_enqueue_style('thickbox');
981
- wp_enqueue_script( 'mo-wp-settings-script',plugins_url('includes/js/settings_popup.js', __FILE__), array('jquery'));
982
- add_thickbox();
983
- $script = '<script>
984
- function getAutoRegisterDisabledMessage() {
985
- var disabledMessage = "' . get_option('mo_openid_register_disabled_message') . '";
986
- return disabledMessage;
987
- }
988
- </script>';
989
- echo $script;
990
- }
991
 
992
  function mo_openid_get_redirect_url() {
993
  $option = get_option( 'mo_openid_login_redirect' );
795
  $decrypted_first_name = isset($_POST['firstName']) ? mo_openid_decrypt($_POST['firstName']): '';
796
  $decrypted_last_name = isset($_POST['lastName']) ? mo_openid_decrypt($_POST['lastName']): '';
797
 
798
+ $decrypted_email= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_email); // removes control characters and some blank characters
799
+ $decrypted_user_name= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_user_name);
800
+ $decrypted_user_picture= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_user_picture);
801
+ $decrypted_user_url= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_user_url);
802
+ $decrypted_first_name= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_first_name);
803
+ $decrypted_last_name= preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $decrypted_last_name);
804
+
805
+ $decrypted_email= trim($decrypted_email); //strips space,tab,newline,carriage return,NUL-byte,vertical tab.
806
+ $decrypted_user_name= trim($decrypted_user_name);
807
+ $decrypted_user_picture= trim($decrypted_user_picture);
808
+ $decrypted_user_url= trim($decrypted_user_url);
809
+ $decrypted_first_name= trim($decrypted_first_name);
810
+ $decrypted_last_name= trim($decrypted_last_name);
811
 
812
  //Calculate user email
813
  if( isset( $decrypted_email ) && strcmp($decrypted_email,'')!=0 ) {
851
  if( $user_email ) {
852
  global $wpdb;
853
  $user_email = sanitize_email($user_email);
854
+ $username = preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $username);
855
  $username = strtolower(str_replace(" ","",$username));
856
 
857
  $orignal_username = '';
870
  $user_email = $server_name[$index] . '_' . get_option('mo_openid_user_number') . '@social-user.com';
871
  update_option('mo_openid_user_number', get_option('mo_openid_user_number') + 1);
872
  } else {
873
+ $user_full_name = preg_replace('/[\x00-\x1F\x7F\x81\x8D\x8F\x90\x9D\xA0\xAD]/', '', $user_full_name);
874
  $username = strtolower(str_replace(" ","",$user_full_name));
875
  $user_email = str_replace(" ","_",$user_full_name).'@social-user.com';
876
  }
898
  $_SESSION['mo_login'] = true;
899
  do_action( 'wp_login', $user->user_login, $user );
900
  wp_set_auth_cookie( $user_id, true );
901
+
902
  }
903
  else { // this user is a guest
904
  if(get_option('mo_openid_auto_register_enable')) {
983
  }
984
 
985
  function mo_openid_disabled_register_message() {
986
+ $message = get_option('mo_openid_register_disabled_message').' Go to <a href="' . site_url() .'">Home Page</a>';
987
+ wp_die($message);
988
+ }
 
 
 
 
 
 
 
 
 
989
 
990
  function mo_openid_get_redirect_url() {
991
  $option = get_option( 'mo_openid_login_redirect' );
includes/jscolor/Thumbs.db DELETED
Binary file
miniorange_openid_sso_settings.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: http://miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
7
- * Version: 5.1.2
8
  * Author: miniOrange
9
  * Author URI: http://miniorange.com
10
  * License: GPL2
@@ -22,6 +22,7 @@ class Miniorange_OpenID_SSO {
22
  function __construct() {
23
 
24
  add_action( 'admin_menu', array( $this, 'miniorange_openid_menu' ) );
 
25
  add_action( 'admin_init', array( $this, 'miniorange_openid_save_settings' ) );
26
 
27
  add_action( 'plugins_loaded', array( $this, 'mo_login_widget_text_domain' ) );
@@ -854,6 +855,14 @@ class Miniorange_OpenID_SSO {
854
  $page = add_menu_page( 'MO OpenID Settings ' . __( 'Configure OpenID', 'mo_openid_settings' ), 'miniOrange Social Login, Sharing', 'administrator',
855
  'mo_openid_settings', array( $this, 'mo_login_widget_openid_options' ),plugin_dir_url(__FILE__) . 'includes/images/miniorange_icon.png');
856
  }
 
 
 
 
 
 
 
 
857
 
858
  public function mo_get_output( $atts ){
859
  if(mo_openid_is_customer_registered()){
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: http://miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Twitter, LinkedIn etc using customizable buttons.
7
+ * Version: 5.1.3
8
  * Author: miniOrange
9
  * Author URI: http://miniorange.com
10
  * License: GPL2
22
  function __construct() {
23
 
24
  add_action( 'admin_menu', array( $this, 'miniorange_openid_menu' ) );
25
+ add_filter( 'plugin_action_links', array($this, 'mo_openid_plugin_actions'), 10, 2 );
26
  add_action( 'admin_init', array( $this, 'miniorange_openid_save_settings' ) );
27
 
28
  add_action( 'plugins_loaded', array( $this, 'mo_login_widget_text_domain' ) );
855
  $page = add_menu_page( 'MO OpenID Settings ' . __( 'Configure OpenID', 'mo_openid_settings' ), 'miniOrange Social Login, Sharing', 'administrator',
856
  'mo_openid_settings', array( $this, 'mo_login_widget_openid_options' ),plugin_dir_url(__FILE__) . 'includes/images/miniorange_icon.png');
857
  }
858
+
859
+ function mo_openid_plugin_actions( $links, $file ) {
860
+ if( $file == 'miniorange-login-openid/miniorange_openid_sso_settings.php' && function_exists( "admin_url" ) ) {
861
+ $settings_link = '<a href="' . admin_url( 'tools.php?page=mo_openid_settings' ) . '">' . __('Settings') . '</a>';
862
+ array_unshift( $links, $settings_link ); // before other links
863
+ }
864
+ return $links;
865
+ }
866
 
867
  public function mo_get_output( $atts ){
868
  if(mo_openid_is_customer_registered()){
miniorange_openid_sso_settings_page.php CHANGED
@@ -2288,7 +2288,7 @@ function mo_openid_pricing_info(){ ?>
2288
  <h3 class="mo_openid_pricing_header">Free</h3>
2289
  <h4 class="mo_openid_pricing_sub_header">(You are automatically on this plan)<br/><br/></h4>
2290
  <hr>
2291
- <p class="mo_openid_pricing_text">$0 - One Time Payment<br/><br/><br/><br/></p>
2292
  <hr>
2293
  <p class="mo_openid_pricing_text">Social Sharing (Free Forever)<br/>
2294
  Social Comments (Free Forever)<br/>
@@ -2312,17 +2312,7 @@ function mo_openid_pricing_info(){ ?>
2312
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2313
  <?php } ?>
2314
  <hr>
2315
- <p class="mo_openid_pricing_text">$9 - One Time Payment<br/>+<br/>$0 - For First 10,000 Logins**<br/><a style="color:pink" href="<?php echo add_query_arg( array('tab' => 'help'), $_SERVER['REQUEST_URI'] ); ?>">Recharge Plans</a>**<br/>
2316
- <?php if(mo_openid_is_customer_valid()) { ?>
2317
- Recharge Plans<br/>
2318
- <select class="mo_openid_license_select_option" <?php if(mo_openid_is_customer_valid()) { ?> style="padding-left:24% !important" <?php } ?>>
2319
- <option>&nbsp;&nbsp;&nbsp;&nbsp;$9 for 10k logins</option>
2320
- <option>&nbsp;&nbsp;&nbsp;$29 for 50k logins</option>
2321
- <option>&nbsp;&nbsp;$69 for 100k logins</option>
2322
- <option>&nbsp;$149 for 500k logins</option>
2323
- <option>$249 for 1million logins</option>
2324
- </select>
2325
- <?php } ?>
2326
  </p>
2327
  <hr>
2328
  <p class="mo_openid_pricing_text">
@@ -2346,17 +2336,7 @@ function mo_openid_pricing_info(){ ?>
2346
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2347
  <?php } ?>
2348
  <hr>
2349
- <p class="mo_openid_pricing_text">$19 - One Time Payment<br/>+<br/>$0 - For First 10,000 Logins**<br/><a style="color:pink" href="<?php echo add_query_arg( array('tab' => 'help'), $_SERVER['REQUEST_URI'] ); ?>">Recharge Plans</a>**<br/>
2350
- <?php if(mo_openid_is_customer_valid()) { ?>
2351
- Recharge Plans<br/>
2352
- <select class="mo_openid_license_select_option" <?php if(mo_openid_is_customer_valid()) { ?> style="padding-left:24% !important" <?php } ?>>
2353
- <option>&nbsp;&nbsp;&nbsp;&nbsp;$9 for 10k logins</option>
2354
- <option>&nbsp;&nbsp;&nbsp;$29 for 50k logins</option>
2355
- <option>&nbsp;&nbsp;$69 for 100k logins</option>
2356
- <option>&nbsp;$149 for 500k logins</option>
2357
- <option>$249 for 1million logins</option>
2358
- </select>
2359
- <?php } ?>
2360
  <hr>
2361
  <p class="mo_openid_pricing_text">
2362
  Social Sharing<br/>
@@ -2381,17 +2361,7 @@ function mo_openid_pricing_info(){ ?>
2381
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2382
  <?php } ?>
2383
  <hr>
2384
- <p class="mo_openid_pricing_text">$29 - One Time Payment<br/>+<br/>$0 - For First 10,000 Logins**<br/><a style="color:pink" href="<?php echo add_query_arg( array('tab' => 'help'), $_SERVER['REQUEST_URI'] ); ?>">Recharge Plans</a>**<br/>
2385
- <?php if(mo_openid_is_customer_valid()) { ?>
2386
- Recharge Plans<br/>
2387
- <select class="mo_openid_license_select_option" <?php if(mo_openid_is_customer_valid()) { ?> style="padding-left:24% !important" <?php } ?>>
2388
- <option>&nbsp;&nbsp;&nbsp;&nbsp;$9 for 10k logins</option>
2389
- <option>&nbsp;&nbsp;&nbsp;$29 for 50k logins</option>
2390
- <option>&nbsp;&nbsp;$69 for 100k logins</option>
2391
- <option>&nbsp;$149 for 500k logins</option>
2392
- <option>$249 for 1million logins</option>
2393
- </select>
2394
- <?php } ?>
2395
  <hr>
2396
  <p class="mo_openid_pricing_text">
2397
  Social Sharing<br/>
@@ -2431,7 +2401,6 @@ function mo_openid_pricing_info(){ ?>
2431
  </script>
2432
  <p><span style="color:rgba(255, 0, 0, 0.76);font-weight:bold;">* Free for 30 days</span> - The plugin uses miniOrange service for Social Login. This keeps the plugin light and delegates login to miniOrange servers thereby reducing the load on your website.</p>
2433
  <p><span style="color:#da7587;font-weight:bold;">* Extended Profile Data</span> - Extended profile data feature requires additional configuration. You need to have your own social media app and permissions from social media providers to collect extended user data.</p>
2434
- <p>** Recharge Plans for logins available in all paid plans. Refer to <a href="<?php echo add_query_arg( array('tab' => 'help'), $_SERVER['REQUEST_URI'] ); ?>">Help &amp; Troubleshooting</a> tab for more details.</p>
2435
  <p>*** Configuring applications for Social Media is cumbersome due to which miniOrange takes care of configuring these apps. If you still wish you use your own applications for Social Login apps, custom apps can be configured for each Social Media in Best Value and Premium plans.</p>
2436
 
2437
  <h3>Steps to upgrade to premium plugin -</h3>
@@ -2626,42 +2595,7 @@ function mo_openid_troubleshoot_info(){ ?>
2626
  </div>
2627
  <hr>
2628
  </td></tr>
2629
-
2630
-
2631
-
2632
-
2633
- <tr><td>
2634
- <h3><a id="openid_question_payment" class="mo_openid_title_panel">Payment &amp; Recharge Plans</a></h3>
2635
- <div class="mo_openid_help_desc" hidden="" id="openid_question_payment_desc">
2636
- <h4><a id="openid_question16">What is a login? What is the validity of 10,000 logins?</a></h4>
2637
- <div id="openid_question16_desc">
2638
- Simply, when someone clicks on any Social Application button/icon to login or to register, that counts as a login.<br><br>
2639
- 10,000 logins are included in all the plans. Logins do not have a validity period and can be used as and when required. When they are used up, Recharge Plans are available to add more logins.
2640
- </div>
2641
- <hr>
2642
- <h4><a id="openid_question15">What are the Recharge Plans for Social Login?</a></h4>
2643
- <div id="openid_question15_desc">
2644
- We have 5 Recharge Plans in Social Login for different volumes.<br><br>
2645
- 1. $9 for 10,000 logins<br>
2646
- 2. $29 for 50,000 logins<br>
2647
- 3. $69 for 100,000 logins<br>
2648
- 4. $149 for 500,000 logins<br>
2649
- 5. $249 for 1,000,000 logins<br><br>
2650
- This data is also available on the Licensing Plans page after upgrade to any of the premium plans.
2651
- </div>
2652
- <hr>
2653
- <h4><a id="openid_question17">I have some more doubts regarding payment.</a></h4>
2654
- <div id="openid_question17_desc">
2655
- Please contact us using the Support form on the right or mail us at <a href="mailto:info@miniorange.com"><i>info@miniorange.com</i></a>.
2656
- </div>
2657
- <hr>
2658
- </div>
2659
- <hr>
2660
- </td></tr>
2661
-
2662
-
2663
-
2664
-
2665
  </tbody>
2666
  </table>
2667
  </div>
2288
  <h3 class="mo_openid_pricing_header">Free</h3>
2289
  <h4 class="mo_openid_pricing_sub_header">(You are automatically on this plan)<br/><br/></h4>
2290
  <hr>
2291
+ <p class="mo_openid_pricing_text">$0 - One Time Payment<br/></p>
2292
  <hr>
2293
  <p class="mo_openid_pricing_text">Social Sharing (Free Forever)<br/>
2294
  Social Comments (Free Forever)<br/>
2312
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2313
  <?php } ?>
2314
  <hr>
2315
+ <p class="mo_openid_pricing_text">$9 - One Time Payment<br/>
 
 
 
 
 
 
 
 
 
 
2316
  </p>
2317
  <hr>
2318
  <p class="mo_openid_pricing_text">
2336
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2337
  <?php } ?>
2338
  <hr>
2339
+ <p class="mo_openid_pricing_text">$19 - One Time Payment<br/>
 
 
 
 
 
 
 
 
 
 
2340
  <hr>
2341
  <p class="mo_openid_pricing_text">
2342
  Social Sharing<br/>
2361
  onclick="upgradeform('social_login_recharge_plan')" >Recharge Now</a></h4>
2362
  <?php } ?>
2363
  <hr>
2364
+ <p class="mo_openid_pricing_text">$29 - One Time Payment<br/>
 
 
 
 
 
 
 
 
 
 
2365
  <hr>
2366
  <p class="mo_openid_pricing_text">
2367
  Social Sharing<br/>
2401
  </script>
2402
  <p><span style="color:rgba(255, 0, 0, 0.76);font-weight:bold;">* Free for 30 days</span> - The plugin uses miniOrange service for Social Login. This keeps the plugin light and delegates login to miniOrange servers thereby reducing the load on your website.</p>
2403
  <p><span style="color:#da7587;font-weight:bold;">* Extended Profile Data</span> - Extended profile data feature requires additional configuration. You need to have your own social media app and permissions from social media providers to collect extended user data.</p>
 
2404
  <p>*** Configuring applications for Social Media is cumbersome due to which miniOrange takes care of configuring these apps. If you still wish you use your own applications for Social Login apps, custom apps can be configured for each Social Media in Best Value and Premium plans.</p>
2405
 
2406
  <h3>Steps to upgrade to premium plugin -</h3>
2595
  </div>
2596
  <hr>
2597
  </td></tr>
2598
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2599
  </tbody>
2600
  </table>
2601
  </div>
readme.txt CHANGED
@@ -3,19 +3,24 @@ Contributors: miniOrange
3
  Donate link: http://miniorange.com
4
  Tags: social login, social, facebook, twitter, login
5
  Requires at least: 2.0.2
6
- Tested up to: 4.7.5
7
- Stable tag: 5.1.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Social Login implements social login, sharing, comment using any social media like Twitter, Google, Facebook.EASIEST to configure.
12
 
13
  == Description ==
14
- = Social Login, Social Sharing =
15
- Social Login, Social Sharing plugin is professionally developed by miniOrange and is a WordPress (BuddyPress compatible) plugin that allows your visitors to comment, share, login and register with many Social Media applications like for example Facebook, Twitter, Vkontakte, Google, LinkedIn, WindowsLive, Instagram, Salesforce and Amazon.
 
 
 
 
 
16
 
17
  = Social Login (30 days Free Trial) =
18
- This plugin enables Social Login. Allow your visitors to choose from their favourite social login apps to login, comment, share and optionally auto-register with your website or blog.
19
 
20
  One-click login to your WordPress site using social login applications like Google, Twitter, Facebook, Vkontakte, LinkedIn, Instagram, Amazon, Salesforce, Windows Live. This means, if your user is logged in to Google, user can comment on any blog or site by simply clicking the `google icon` - no username or password is explicitly required! Simply enable Social Login, **no setup of social media application** is required and you are done. Since the setup is managed by us, Social Login is a premium feature with 30 days free trial.
21
 
@@ -27,17 +32,6 @@ See the <a href="https://wordpress.org/plugins/miniorange-login-openid/screensho
27
  = Social Comments =
28
  Allow users to comment on your website using supported social media commenting apps such as Facebook and Google. Social Comments does not require the users to be registered or logged in on your site for adding comments.
29
 
30
- = Easy Integration =
31
- Easy integration with your website with options to add Social login on login page, registration page and comments section. Add `miniOrange - Social Login` widget to add social login in widget area. Add shortcode [miniorange_social_login] to add social login in other places. Add social sharing applications to home page, posts, content pages, WooCommerce product page, bbPress forums, bbPress topics, bbPress replies and anywhere on your site using widgets. For Social Sharing, use `miniOrange Sharing - Vertical` for floating vertical widget and `miniOrange Sharing - Horizontal` for horizontal widget to add social sharing in widget area. Add shortcode [miniorange_social_sharing] for horizontal sharing icons and [miniorange_social_sharing_vertical] for vertical sharing icons.
32
-
33
- = Beautiful customizations =
34
- Customize Social Login and Social Sharing icons using a range of UI options like shape, size and theme. Choose from the following shapes - square, circle, rounded and long. Choose from the following themes - default, filled background, without background. Additionally customize the curve of the long buttons.
35
-
36
- = Single sign-on =
37
- Single Sign-On using Social Login creates a single authentication system for multiple web properties allowing users to navigate websites with a single account.
38
-
39
- All other Social Login and Social Sharing applications are supported through a simple email to info@miniorange.com.
40
-
41
  = Features - =
42
 
43
  * Clean and easy to use WordPress admin UI
@@ -63,6 +57,19 @@ All other Social Login and Social Sharing applications are supported through a s
63
  * Variety of troubleshooting topics in plugin.
64
  * **Support** using email and in-plugin support form
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  = Registration - How is this plugin better than other plugins available =
67
  Our very simple and easy registration lets you register with miniOrange. miniOrange takes care of creating applications for you in Social Login. In any other social login plugin, if you are providing login with a social media application, facebook for example, you will need an App ID for which you will need to create an entire application in facebook. So if you want to provide login with 10 different social applications then you need to go and create 10 applications in those social platforms. Using our plugin, Social Login, Social Sharing by miniOrange, you do not need to do that. Just by creating one registration with us, you get Social login plus other features.
68
 
@@ -136,9 +143,13 @@ Please email us at info@miniorange.com. You can also submit your query from the
136
 
137
 
138
  == Changelog ==
 
 
 
 
139
 
140
- = 5.1.1 =
141
- Updating Readme
142
 
143
  = 5.1.1 =
144
  * Security fix for Social Login
@@ -354,6 +365,14 @@ Updating Readme
354
  * First version of Social Login, Social Sharing plugin.
355
 
356
  == Upgrade Notice ==
 
 
 
 
 
 
 
 
357
  = 5.1.1 =
358
  * Security fix for Social Login
359
  * Minor fix - clean up data during Social Login
3
  Donate link: http://miniorange.com
4
  Tags: social login, social, facebook, twitter, login
5
  Requires at least: 2.0.2
6
+ Tested up to: 4.8
7
+ Stable tag: 5.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Social Login implements social login, sharing, comment using any social media like Twitter, Google, Facebook.EASIEST to configure.
12
 
13
  == Description ==
14
+ Social Login is the easiest to configure and conviniently allows you to setup and start using the plugin very quickly.
15
+
16
+ Social Login includes Facebook, Twitter, Vkontakte, Google, LinkedIn, WindowsLive, Instagram, Salesforce and Amazon.
17
+
18
+ Social Login allows your visitors to comment, share, login and register with many Social Media applications.
19
+
20
+ Social Login provides different display options with beautiful customizations (CSS knowledge not needed!).
21
 
22
  = Social Login (30 days Free Trial) =
23
+ Social Login allows your visitors to choose from their favourite social login apps to login, comment, share and optionally auto-register with your website or blog.
24
 
25
  One-click login to your WordPress site using social login applications like Google, Twitter, Facebook, Vkontakte, LinkedIn, Instagram, Amazon, Salesforce, Windows Live. This means, if your user is logged in to Google, user can comment on any blog or site by simply clicking the `google icon` - no username or password is explicitly required! Simply enable Social Login, **no setup of social media application** is required and you are done. Since the setup is managed by us, Social Login is a premium feature with 30 days free trial.
26
 
32
  = Social Comments =
33
  Allow users to comment on your website using supported social media commenting apps such as Facebook and Google. Social Comments does not require the users to be registered or logged in on your site for adding comments.
34
 
 
 
 
 
 
 
 
 
 
 
 
35
  = Features - =
36
 
37
  * Clean and easy to use WordPress admin UI
57
  * Variety of troubleshooting topics in plugin.
58
  * **Support** using email and in-plugin support form
59
 
60
+ = Easy Integration =
61
+ Easy integration with your website with options to add Social login on login page, registration page and comments section. Add `miniOrange - Social Login` widget to add social login in widget area. Add shortcode [miniorange_social_login] to add social login in other places. Add social sharing applications to home page, posts, content pages, WooCommerce product page, bbPress forums, bbPress topics, bbPress replies and anywhere on your site using widgets. For Social Sharing, use `miniOrange Sharing - Vertical` for floating vertical widget and `miniOrange Sharing - Horizontal` for horizontal widget to add social sharing in widget area. Add shortcode [miniorange_social_sharing] for horizontal sharing icons and [miniorange_social_sharing_vertical] for vertical sharing icons.
62
+
63
+ = Beautiful customizations =
64
+ Customize Social Login and Social Sharing icons using a range of UI options like shape, size and theme. Choose from the following shapes - square, circle, rounded and long. Choose from the following themes - default, filled background, without background. Additionally customize the curve of the long buttons.
65
+
66
+ = Single sign-on =
67
+ Single Sign-On using Social Login creates a single authentication system for multiple web properties allowing users to navigate websites with a single account.
68
+
69
+ All other Social Login and Social Sharing applications are supported through a simple email to info@miniorange.com.
70
+
71
+
72
+
73
  = Registration - How is this plugin better than other plugins available =
74
  Our very simple and easy registration lets you register with miniOrange. miniOrange takes care of creating applications for you in Social Login. In any other social login plugin, if you are providing login with a social media application, facebook for example, you will need an App ID for which you will need to create an entire application in facebook. So if you want to provide login with 10 different social applications then you need to go and create 10 applications in those social platforms. Using our plugin, Social Login, Social Sharing by miniOrange, you do not need to do that. Just by creating one registration with us, you get Social login plus other features.
75
 
143
 
144
 
145
  == Changelog ==
146
+ = 5.1.3 =
147
+ * Improved Social Login for non-English characters
148
+ * Changed Payment Plans
149
+ * Compatibility with 4.8
150
 
151
+ = 5.1.2 =
152
+ * Updating Readme
153
 
154
  = 5.1.1 =
155
  * Security fix for Social Login
365
  * First version of Social Login, Social Sharing plugin.
366
 
367
  == Upgrade Notice ==
368
+ = 5.1.3 =
369
+ * Improved Social Login for non-English characters
370
+ * Changed Payment Plans
371
+ * Compatibility with 4.8
372
+
373
+ = 5.1.2 =
374
+ * Updating Readme
375
+
376
  = 5.1.1 =
377
  * Security fix for Social Login
378
  * Minor fix - clean up data during Social Login