Social Login - Version 7.5.10

Version Description

  • Added shortcode logout button on frontend.
  • Updated amazon login instructions.
  • Updated license plan discord integration.
  • Updated skip from on deactivation.
Download this release

Release Info

Developer unsolvedcontriver
Plugin Icon 128x128 Social Login
Version 7.5.10
Comparing to
See all releases

Code changes from version 7.5.9 to 7.5.10

CustomerOpenID.php CHANGED
@@ -161,7 +161,7 @@ class CustomerOpenID {
161
  return $response['body'];
162
  }
163
 
164
- function mo_openid_send_email_alert($email,$phone,$message,$reply,$skip_followup){
165
  $hostname = get_site_option('mo_openid_host_name') ;
166
  $url = $hostname.'/moas/api/notify/send';
167
  // $customer_details = Utilities::getCustomerDetails();
@@ -192,7 +192,6 @@ class CustomerOpenID {
192
  <br><br>Phone Number : '.$phone_number.'
193
  <br><br>Email : <a href="mailto:'.$fromEmail.'" target="_blank">'.$fromEmail.'</a>
194
  <br><br>Activation time : '.$activation_date.' - '.$deactivationdate.' ['.$total_activation_days.']
195
- <br><br>Reply: '.$reply.'
196
  <br><br>Follow-Up: '.$skip_followup.'
197
  <br><br>Plugin Deactivated: '.$query.''. $version.'
198
  <br><br>Reason: <b>'.$message.'</b></div>';
161
  return $response['body'];
162
  }
163
 
164
+ function mo_openid_send_email_alert($email,$phone,$message,$skip_followup){
165
  $hostname = get_site_option('mo_openid_host_name') ;
166
  $url = $hostname.'/moas/api/notify/send';
167
  // $customer_details = Utilities::getCustomerDetails();
192
  <br><br>Phone Number : '.$phone_number.'
193
  <br><br>Email : <a href="mailto:'.$fromEmail.'" target="_blank">'.$fromEmail.'</a>
194
  <br><br>Activation time : '.$activation_date.' - '.$deactivationdate.' ['.$total_activation_days.']
 
195
  <br><br>Follow-Up: '.$skip_followup.'
196
  <br><br>Plugin Deactivated: '.$query.''. $version.'
197
  <br><br>Reason: <b>'.$message.'</b></div>';
miniorange_openid_sso_settings.php CHANGED
@@ -4,12 +4,12 @@
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Apple, Twitter, LinkedIn etc using customizable buttons.
7
- * Version: 7.5.9
8
  * Author: <a href="https://www.miniorange.com/">miniOrange</a>
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
- define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.5.9');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
@@ -77,6 +77,7 @@ class miniorange_openid_sso_settings
77
  add_filter( 'the_content', array( $this, 'mo_openid_add_social_share_links' ) );
78
  add_filter( 'the_excerpt', array( $this, 'mo_openid_add_social_share_links' ) );
79
  add_shortcode( 'miniorange_social_comments', array($this, 'mo_get_comments_output') );
 
80
 
81
  //set default values
82
  add_option( 'mo_openid_host_name', 'https://login.xecurify.com');
@@ -751,11 +752,11 @@ Thank you.';
751
  if(isset($_POST['get_reply']))
752
  $reply_required = htmlspecialchars($_POST['get_reply']);
753
  if(empty($reply_required)){
754
- $reply_required = "No";
755
- $reply ='[:'.$reply_required.']';
756
  }else{
757
- $reply_required = "Yes";
758
- $reply ='[:'.$reply_required.']';
759
  }
760
 
761
 
@@ -763,7 +764,7 @@ Thank you.';
763
  if (isset($_POST['skip_reply'])) {
764
  if ($_POST['skip_reply'] == 'skip') {
765
  $skip_followup = "Please Don't follow.";
766
- $reply = "No";
767
  }
768
  }
769
  else{
@@ -774,7 +775,7 @@ Thank you.';
774
  $phone='';
775
  $contact_us = new CustomerOpenID();
776
 
777
- $submited = json_decode( $contact_us->mo_openid_send_email_alert( $email, $phone, $message, $reply, $skip_followup ), true );
778
 
779
  if ( json_last_error() == JSON_ERROR_NONE ) {
780
  if ( is_array( $submited ) && array_key_exists( 'status', $submited ) && $submited['status'] == 'ERROR' )
@@ -1091,6 +1092,16 @@ Thank you.';
1091
  $html = apply_filters('customization_form', $last_name, $first_name, $user_full_name, $user_url, $call, $user_profile_url, $user_picture, $username, $user_email, $random_password, $decrypted_app_name, $decrypted_user_id, $social_app_name, $social_user_id);
1092
  return $html;
1093
  }
 
 
 
 
 
 
 
 
 
 
1094
  function mo_openid_is_buddypress_active(){
1095
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
1096
  if(is_plugin_active('buddypress/bp-loader.php') || is_plugin_active('buddyboss-platform/bp-loader.php'))
4
  * Plugin Name: Social Login, Social Sharing by miniOrange
5
  * Plugin URI: https://www.miniorange.com
6
  * Description: Allow your users to login, comment and share with Facebook, Google, Apple, Twitter, LinkedIn etc using customizable buttons.
7
+ * Version: 7.5.10
8
  * Author: <a href="https://www.miniorange.com/">miniOrange</a>
9
  * License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
  */
11
 
12
+ define('MO_OPENID_SOCIAL_LOGIN_VERSION', '7.5.10');
13
  define('plugin_url', plugin_dir_url(__FILE__) . "includes/images/icons/");
14
  define('MOSL_PLUGIN_DIR',str_replace('/','\\',plugin_dir_path(__FILE__)));
15
  require('miniorange_openid_sso_settings_page.php');
77
  add_filter( 'the_content', array( $this, 'mo_openid_add_social_share_links' ) );
78
  add_filter( 'the_excerpt', array( $this, 'mo_openid_add_social_share_links' ) );
79
  add_shortcode( 'miniorange_social_comments', array($this, 'mo_get_comments_output') );
80
+ add_shortcode( 'miniorange_social_login_logout', array($this, 'mo_get_logout') );
81
 
82
  //set default values
83
  add_option( 'mo_openid_host_name', 'https://login.xecurify.com');
752
  if(isset($_POST['get_reply']))
753
  $reply_required = htmlspecialchars($_POST['get_reply']);
754
  if(empty($reply_required)){
755
+ $reply_required = "Please Don't follow";
756
+ $reply =''.$reply_required.'';
757
  }else{
758
+ $reply_required = "You can follow";
759
+ $reply =''.$reply_required.'';
760
  }
761
 
762
 
764
  if (isset($_POST['skip_reply'])) {
765
  if ($_POST['skip_reply'] == 'skip') {
766
  $skip_followup = "Please Don't follow.";
767
+ $reply = "Please Don't follow";
768
  }
769
  }
770
  else{
775
  $phone='';
776
  $contact_us = new CustomerOpenID();
777
 
778
+ $submited = json_decode( $contact_us->mo_openid_send_email_alert( $email, $phone, $message, $skip_followup ), true );
779
 
780
  if ( json_last_error() == JSON_ERROR_NONE ) {
781
  if ( is_array( $submited ) && array_key_exists( 'status', $submited ) && $submited['status'] == 'ERROR' )
1092
  $html = apply_filters('customization_form', $last_name, $first_name, $user_full_name, $user_url, $call, $user_profile_url, $user_picture, $username, $user_email, $random_password, $decrypted_app_name, $decrypted_user_id, $social_app_name, $social_user_id);
1093
  return $html;
1094
  }
1095
+ public function mo_get_logout(){
1096
+ ob_start();
1097
+ if (is_user_logged_in()) :
1098
+ ?>
1099
+ <div><a role="button" href="<?php echo wp_logout_url(get_permalink()); ?>">Log Out</a></div>
1100
+ <?php
1101
+ endif;
1102
+
1103
+ return ob_get_clean();
1104
+ }
1105
  function mo_openid_is_buddypress_active(){
1106
  include_once(ABSPATH.'wp-admin/includes/plugin.php');
1107
  if(is_plugin_active('buddypress/bp-loader.php') || is_plugin_active('buddyboss-platform/bp-loader.php'))
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.miniorange.com
4
  Tags: social login, facebook login, google login, social sharing, twitter login, linkedIn, user login, vkontakte login, social comments, social commenting, woocommerce login, facebook, twitter, google, social connect, social network login, social plugin, windows, microsoft, discord login, openID, OAuth Login, User Login, social media login, user registration, social sign in.
5
  Requires at least: 2.0.2
6
  Tested up to: 5.9
7
- Stable tag: 7.5.9
8
  License: GPLv2 or later
9
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
 
@@ -278,14 +278,20 @@ Please email us at info@miniorange.com. You can also submit your query from the
278
  16. Social Sharing icons without background.
279
 
280
  ==Changelog==
 
 
 
 
 
 
281
  = 7.5.9 =
282
  * Introduced a new Enterprise plan.
283
  * Added Skip button during plugin deactivation.
284
  * Added MailChimp and Strava in Premium and all-inclusive version.
285
 
286
  = 7.5.8 =
287
- *Removed banner
288
- *UI Changes
289
 
290
  = 7.5.7 =
291
  * Resolved the banner issue.
@@ -985,6 +991,12 @@ SECURITY FIXES
985
  * First version of Social Login, Social Sharing plugin.
986
 
987
  == Upgrade Notice ==
 
 
 
 
 
 
988
  = 7.5.9 =
989
  * Introduced a new Enterprise plan.
990
  * Added Skip button during plugin deactivation.
4
  Tags: social login, facebook login, google login, social sharing, twitter login, linkedIn, user login, vkontakte login, social comments, social commenting, woocommerce login, facebook, twitter, google, social connect, social network login, social plugin, windows, microsoft, discord login, openID, OAuth Login, User Login, social media login, user registration, social sign in.
5
  Requires at least: 2.0.2
6
  Tested up to: 5.9
7
+ Stable tag: 7.5.10
8
  License: GPLv2 or later
9
  License URI: http://miniorange.com/usecases/miniOrange_User_Agreement.pdf
10
 
278
  16. Social Sharing icons without background.
279
 
280
  ==Changelog==
281
+ = 7.5.10 =
282
+ * Added shortcode logout button on frontend.
283
+ * Updated amazon login instructions.
284
+ * Updated license plan discord integration.
285
+ * Updated skip from on deactivation.
286
+
287
  = 7.5.9 =
288
  * Introduced a new Enterprise plan.
289
  * Added Skip button during plugin deactivation.
290
  * Added MailChimp and Strava in Premium and all-inclusive version.
291
 
292
  = 7.5.8 =
293
+ * Removed banner
294
+ * UI Changes
295
 
296
  = 7.5.7 =
297
  * Resolved the banner issue.
991
  * First version of Social Login, Social Sharing plugin.
992
 
993
  == Upgrade Notice ==
994
+ = 7.5.10 =
995
+ * Added shortcode logout button on frontend.
996
+ * Updated amazon login instructions.
997
+ * Updated license plan discord integration.
998
+ * Updated skip from on deactivation.
999
+
1000
  = 7.5.9 =
1001
  * Introduced a new Enterprise plan.
1002
  * Added Skip button during plugin deactivation.
social_apps/amazon.php CHANGED
@@ -9,7 +9,7 @@ class mo_amazon
9
  public $instructions;
10
  public function __construct() {
11
  $this->site_url = get_option( 'siteurl' );
12
- $this->instructions="Go to <a href=\"http://login.amazon.com\" target=\"_blank\">http://login.amazon.com</a> and sign in with your amazon developer account and select App Console.##On the page, Click on the <strong>Create a New Security Profile</strong> button and enter a <strong>Name, Description, and Privacy Notice URL</strong> for your app. Click on Save.##Expand the <strong>Web Settings</strong> section.##Enter <b><code id='12'>".mo_get_permalink('amazon')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"far fa-fw fa-lg fa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#12', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> in the <strong>Allowed Return URLs</strong>## Copy the Client Id and Client Secret from the Web Settings and Paste them into the fields above. ##Click on the Save settings button.##Go to Social Login tab to configure the display as well as other login settings";
13
  }
14
 
15
 
9
  public $instructions;
10
  public function __construct() {
11
  $this->site_url = get_option( 'siteurl' );
12
+ $this->instructions="Go to <a href=\"http://login.amazon.com\" target=\"_blank\">http://login.amazon.com</a> and sign in with your amazon developer account.##On the developer homepage, in the upper right corner, click <strong>Developer Console</strong>.##On the Developer Console homepage, click <strong>Login with Amazon</strong>, Click on the <strong>Create a New Security Profile</strong> button and enter a <strong>Name, Description, and Privacy Notice URL</strong> for your app. Click on Save.##click the configuration icon in the <strong>Manage</strong> column and then click <strong>Web Settings</strong>.##Enter <b><code id='12'>".mo_get_permalink('amazon')."</code><i style= \"width: 11px;height: 9px;padding-left:2px;padding-top:3px\" class=\"far fa-fw fa-lg fa-copy mo_copy mo_copytooltip\" onclick=\"copyToClipboard(this, '#12', '#shortcode_url_copy')\"><span id=\"shortcode_url_copy\" class=\"mo_copytooltiptext\">Copy to Clipboard</span></i></b> in the <strong>Allowed Return URLs</strong>## Copy the Client Id and Client Secret from the Web Settings and Paste them into the fields above. ##Click on the Save settings button.##Go to Social Login tab to configure the display as well as other login settings";
13
  }
14
 
15
 
view/licensing_plans/mo_openid_lic_plans.php CHANGED
@@ -559,7 +559,7 @@ function mo_openid_licensing_plans()
559
  <br>
560
  <li data-type="mo_add-on" class="moaslp is-hidden">
561
  <header class="mo-openid-cd-pricing-header">
562
- <h2 style="margin-bottom: 10%;">Discord Integration Add-on</h2>
563
  <label for="mo_openid_dis">Select No. of Instances : </label>
564
  <select name="mo_openid_dis" id="mo_openid_dis">
565
  <option value="1">1</option>
@@ -569,9 +569,10 @@ function mo_openid_licensing_plans()
569
 
570
  <div class="cd-price" style="margin-top: 9%;">
571
  <span class="mo-openid-cd-currency">$</span>
572
- <span id="mo_openid_dis1" class="mo-openid-cd-value">79</span> &nbsp;&nbsp;
573
  <span class="mo-openid-cd-currency">$</span>
574
- <span id="mo_openid_dis2" class="mo-openid-cd-value"><s>99</s></span>
 
575
  </div>
576
  </header> <!-- .mo-openid-cd-pricing-header -->
577
  <footer class="mo-openid-cd-pricing-footer">
@@ -579,7 +580,7 @@ function mo_openid_licensing_plans()
579
  </footer>
580
  <div class="mo-openid-cd-pricing-body">
581
  <ul class="mo-openid-cd-pricing-features">
582
- <li onclick="mo_all_features_clk('discord_adon')"style="cursor:pointer">Click Here to see features<i class="far fa-hand-pointer" style="color: orangered;margin-left: .5%" aria-hidden="true"></i></li>
583
  <li><a style="cursor: pointer" onclick="mo_openid_support_form('')">Click here to Contact Us</a></li>
584
  </ul>
585
  </div> <!-- .mo-openid-cd-pricing-body -->
@@ -825,6 +826,33 @@ function mo_openid_licensing_plans()
825
  </ul>
826
  </div> <!-- .mo-openid-cd-pricing-body -->
827
  </li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
828
  </ul> <!-- .mo-openid-cd-pricing-wrapper -->
829
  </li>
830
 
@@ -1065,6 +1093,34 @@ function mo_openid_licensing_plans()
1065
  </ul>
1066
  </div>
1067
  </li>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1068
 
1069
 
1070
  </ul> <!-- .mo-openid-cd-pricing-wrapper -->
@@ -1762,7 +1818,9 @@ function mo_openid_licensing_plans()
1762
  'woocommerce_int_adon'=>'<h2><img src="'. plugin_dir_url(dirname(dirname(__FILE__))) .'includes/images/woocommerce.png" style="width:35px;height:30px;"> WooCommerce Integration Add-on Features</h2><li>WooCommerce Display Options</li><li>First name, last name and email are pre-filled in billing details of a user and on the Woocommerce checkout page.</li><li>Social Login on WooCommerce Login Page</li><li>Social Login on WooCommerce Registration Page</li><li>Social Login on WooCommerce Checkout Page</li><li>Before WooCommerce Login Form</li><li>Before "Remember Me" of WooCommerce Login Form</li> <li>After WooCommerce Login Form</li><li>Before WooCommerce Registration Form</li><li>Before "Register button" of WooCommerce Registration Form</li> <li>After WooCommerce Registration Form</li><li>Before & After WooCommerce Checkout Form</li>',
1763
  'buddypress_adon'=>' <h2><img src="'. plugin_dir_url(dirname(dirname(__FILE__))) .'includes/images/buddypress.png" style="width:35px;height:30px;"> Buddypress Integration Add-on Features</h2><h2>Description</h2><li>Social Login for BuddyPress</li> <li>Extended attributes returned from social app are mapped to Custom BuddyPress fields.</li><li> Profile picture from social media is mapped to Buddypress avatar</li><li>Before BuddyPress Registration Form</li><li>Before BuddyPress Account Details</li><li>After BuddyPress Registration Form</li>',
1764
  'hubspot_adon'=>' <h2><i class="fab fa-hubspot" style="width:35px;height:30px;color: orangered;font-size: 1.6em;"></i>Hubspot Integration Add-on Feature</h2><h2>Description</h2><li>Add social login user to Hubspot Contact List</li><li>Track the activities of the user on your website.</li>',
1765
- 'discord_adon'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li>',
 
 
1766
  'support_chat'=>' <h2><i class="fa fa-user" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Support Chat Add-on Feature</h2><h2>Description</h2><li>Manage your users queries and guide your users while chatting with them through this support chat feature.</li>',
1767
  'gravity_form'=>' <h2><i class="fab fa-wpforms" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Gravity Form Integration Feature</h2><h2>Description</h2><li>It allows you to map the attribute return from the social login provider with the Gravity user registration form.</li>',
1768
  'discord_integration'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li>',
559
  <br>
560
  <li data-type="mo_add-on" class="moaslp is-hidden">
561
  <header class="mo-openid-cd-pricing-header">
562
+ <h2 style="margin-bottom: 10%;">Basic Discord Integration Add-on</h2>
563
  <label for="mo_openid_dis">Select No. of Instances : </label>
564
  <select name="mo_openid_dis" id="mo_openid_dis">
565
  <option value="1">1</option>
569
 
570
  <div class="cd-price" style="margin-top: 9%;">
571
  <span class="mo-openid-cd-currency">$</span>
572
+ <span id="mo_openid_dis1" class="mo-openid-cd-value">99</span>
573
  <span class="mo-openid-cd-currency">$</span>
574
+ <span id="mo_openid_dis2" class="mo-openid-cd-value"><s>140</s></span>&nbsp;&nbsp;
575
+
576
  </div>
577
  </header> <!-- .mo-openid-cd-pricing-header -->
578
  <footer class="mo-openid-cd-pricing-footer">
580
  </footer>
581
  <div class="mo-openid-cd-pricing-body">
582
  <ul class="mo-openid-cd-pricing-features">
583
+ <li onclick="mo_all_features_clk('discord_adon1')"style="cursor:pointer">Click Here to see features<i class="far fa-hand-pointer" style="color: orangered;margin-left: .5%" aria-hidden="true"></i></li>
584
  <li><a style="cursor: pointer" onclick="mo_openid_support_form('')">Click here to Contact Us</a></li>
585
  </ul>
586
  </div> <!-- .mo-openid-cd-pricing-body -->
826
  </ul>
827
  </div> <!-- .mo-openid-cd-pricing-body -->
828
  </li>
829
+ <br>
830
+ <li data-type="mo_add-on" class="moaslp is-hidden">
831
+ <header class="mo-openid-cd-pricing-header">
832
+ <h2 style="margin-bottom: 10%;">Discord Role Maping Integration Add-on</h2>
833
+ <label for="mo_openid_dis">Select No. of Instances : </label>
834
+ <select name="mo_openid_dis" id="mo_openid_dis">
835
+ <option value="1">1</option>
836
+ <option value="5">5</option>
837
+ <option value="10">10</option>
838
+ </select>
839
+
840
+ <div class="cd-price" style="margin-top: 9%;">
841
+ <span class="mo-openid-cd-currency">$</span>
842
+ <span id="mo_openid_dis1" class="mo-openid-cd-value">299</span> &nbsp;&nbsp;
843
+
844
+ </div>
845
+ </header> <!-- .mo-openid-cd-pricing-header -->
846
+ <footer class="mo-openid-cd-pricing-footer">
847
+ <a href="#" class="mo-openid-cd-select" onclick="mo_openid_support_form('')" >Contact Us</a>
848
+ </footer>
849
+ <div class="mo-openid-cd-pricing-body">
850
+ <ul class="mo-openid-cd-pricing-features">
851
+ <li onclick="mo_all_features_clk('discord_adon2')"style="cursor:pointer">Click Here to see features<i class="far fa-hand-pointer" style="color: orangered;margin-left: .5%" aria-hidden="true"></i></li>
852
+ <li><a style="cursor: pointer" onclick="mo_openid_support_form('')">Click here to Contact Us</a></li>
853
+ </ul>
854
+ </div> <!-- .mo-openid-cd-pricing-body -->
855
+ </li>
856
  </ul> <!-- .mo-openid-cd-pricing-wrapper -->
857
  </li>
858
 
1093
  </ul>
1094
  </div>
1095
  </li>
1096
+ <br>
1097
+ <li data-type="mo_add-on" class="moaslp is-hidden">
1098
+ <header class="mo-openid-cd-pricing-header">
1099
+ <h2 style="margin-bottom: 10%;">Discord Subscription Based Integration Add-on</h2>
1100
+ <label for="mo_openid_dis">Select No. of Instances : </label>
1101
+ <select name="mo_openid_dis" id="mo_openid_dis">
1102
+ <option value="1">1</option>
1103
+ <option value="5">5</option>
1104
+ <option value="10">10</option>
1105
+ </select>
1106
+
1107
+ <div class="cd-price" style="margin-top: 9%;">
1108
+ <span class="mo-openid-cd-currency">$</span>
1109
+ <span id="mo_openid_dis1" class="mo-openid-cd-value">449</span> &nbsp;&nbsp;
1110
+
1111
+ </div>
1112
+ </header> <!-- .mo-openid-cd-pricing-header -->
1113
+ <footer class="mo-openid-cd-pricing-footer">
1114
+ <a href="#" class="mo-openid-cd-select" onclick="mo_openid_support_form('')" >Contact Us</a>
1115
+ </footer>
1116
+ <div class="mo-openid-cd-pricing-body">
1117
+ <ul class="mo-openid-cd-pricing-features">
1118
+ <li onclick="mo_all_features_clk('discord_adon3')"style="cursor:pointer">Click Here to see features<i class="far fa-hand-pointer" style="color: orangered;margin-left: .5%" aria-hidden="true"></i></li>
1119
+ <li><a style="cursor: pointer" onclick="mo_openid_support_form('')">Click here to Contact Us</a></li>
1120
+ </ul>
1121
+ </div> <!-- .mo-openid-cd-pricing-body -->
1122
+ </li>
1123
+
1124
 
1125
 
1126
  </ul> <!-- .mo-openid-cd-pricing-wrapper -->
1818
  'woocommerce_int_adon'=>'<h2><img src="'. plugin_dir_url(dirname(dirname(__FILE__))) .'includes/images/woocommerce.png" style="width:35px;height:30px;"> WooCommerce Integration Add-on Features</h2><li>WooCommerce Display Options</li><li>First name, last name and email are pre-filled in billing details of a user and on the Woocommerce checkout page.</li><li>Social Login on WooCommerce Login Page</li><li>Social Login on WooCommerce Registration Page</li><li>Social Login on WooCommerce Checkout Page</li><li>Before WooCommerce Login Form</li><li>Before "Remember Me" of WooCommerce Login Form</li> <li>After WooCommerce Login Form</li><li>Before WooCommerce Registration Form</li><li>Before "Register button" of WooCommerce Registration Form</li> <li>After WooCommerce Registration Form</li><li>Before & After WooCommerce Checkout Form</li>',
1819
  'buddypress_adon'=>' <h2><img src="'. plugin_dir_url(dirname(dirname(__FILE__))) .'includes/images/buddypress.png" style="width:35px;height:30px;"> Buddypress Integration Add-on Features</h2><h2>Description</h2><li>Social Login for BuddyPress</li> <li>Extended attributes returned from social app are mapped to Custom BuddyPress fields.</li><li> Profile picture from social media is mapped to Buddypress avatar</li><li>Before BuddyPress Registration Form</li><li>Before BuddyPress Account Details</li><li>After BuddyPress Registration Form</li>',
1820
  'hubspot_adon'=>' <h2><i class="fab fa-hubspot" style="width:35px;height:30px;color: orangered;font-size: 1.6em;"></i>Hubspot Integration Add-on Feature</h2><h2>Description</h2><li>Add social login user to Hubspot Contact List</li><li>Track the activities of the user on your website.</li>',
1821
+ 'discord_adon1'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li>',
1822
+ 'discord_adon2'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li><li>Advance role mapping (Discord to WordPress).</li><li>Add user to discord server.</li>',
1823
+ 'discord_adon3'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li><li>Advance role mapping (Discord to WordPress).</li><li>Add user to discord server.</li><li>Wordpress to Discord role mapping.</li><li>Manage user subscription on discord server.Supported Plugins PaidMembershipPro WooCommerce Subscriptions.</li>',
1824
  'support_chat'=>' <h2><i class="fa fa-user" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Support Chat Add-on Feature</h2><h2>Description</h2><li>Manage your users queries and guide your users while chatting with them through this support chat feature.</li>',
1825
  'gravity_form'=>' <h2><i class="fab fa-wpforms" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Gravity Form Integration Feature</h2><h2>Description</h2><li>It allows you to map the attribute return from the social login provider with the Gravity user registration form.</li>',
1826
  'discord_integration'=>' <h2><i class="fab fa-discord" style="width:35px;height:30px;color: #7289da;font-size: 1.6em;"></i> Discord Integration Add-on Feature</h2><h2>Description</h2><li>Manage your users and restrict the login/registration of user based on whether the user is present in the Discord server or not.</li>',
view/shrtco/mo_openid_shrtco.php CHANGED
@@ -183,6 +183,10 @@ function mo_openid_login_shortcodes(){
183
  <code>&lt;&#63;php echo apply_shortcodes('SHORTCODE') /&#63;&gt;</code><br/><br/>
184
  <?php echo mo_sl('Replace SHORTCODE in above code with the required shortcode like <code>[miniorange_social_login theme="default"]</code>, so the final code looks like following :');?><br/><br/>
185
  <code id='7'>&lt;&#63;php echo apply_shortcodes('[miniorange_social_login theme="default"]') &#63;&gt;</code><i style= "width: 11px;height: 9px;padding-left:2px;padding-top:3px" class="far fa-fw fa-lg fa-copy mo_copy mo_copytooltip" onclick="copyToClipboard(this, '#7', '#shortcode_url33_copy')"><span id="shortcode_url33_copy" class="mo_copytooltiptext">Copy to Clipboard</span></i><br/><br/>
 
 
 
 
186
  </td>
187
  </tr>
188
  </table>
183
  <code>&lt;&#63;php echo apply_shortcodes('SHORTCODE') /&#63;&gt;</code><br/><br/>
184
  <?php echo mo_sl('Replace SHORTCODE in above code with the required shortcode like <code>[miniorange_social_login theme="default"]</code>, so the final code looks like following :');?><br/><br/>
185
  <code id='7'>&lt;&#63;php echo apply_shortcodes('[miniorange_social_login theme="default"]') &#63;&gt;</code><i style= "width: 11px;height: 9px;padding-left:2px;padding-top:3px" class="far fa-fw fa-lg fa-copy mo_copy mo_copytooltip" onclick="copyToClipboard(this, '#7', '#shortcode_url33_copy')"><span id="shortcode_url33_copy" class="mo_copytooltiptext">Copy to Clipboard</span></i><br/><br/>
186
+ <br/><hr><br/>
187
+ <h3><?php echo mo_sl("Shortcode for logout");?></h3>
188
+ <?php echo mo_sl("You can use the following shortcode for Logout: ");?>
189
+ <code id='8'>[miniorange_social_login_logout]</code><i style= "width: 11px;height: 9px;padding-left:2px;padding-top:3px" class="far fa-fw fa-lg fa-copy mo_copy mo_copytooltip" onclick="copyToClipboard(this, '#8', '#shortcode_url34_copy')"><span id="shortcode_url34_copy" class="mo_copytooltiptext">Copy to Clipboard</span></i><br/><br/>
190
  </td>
191
  </tr>
192
  </table>