WooCommerce Settings
';
loginizer_feature_available('Social login for WooCommerce');
echo '
';
loginizer_page_footer();
}
// Checks if we can show the Status of the Social App.
// As if Premium verison is disabled then the status should not be visible.
function loginizer_show_social_status($provider){
if(!empty($provider['premium']) && !defined('LOGINIZER_PREMIUM')){
return false;
}
return true;
}
function loginizer_how_to_linkedinopenid(){
// NOTE: update the date of last updated of this doc if you make any change.
echo '
'.esc_html__('Create LinkedIn App', 'loginizer').'
'.esc_html__('Last Updated','loginizer').': 24th June 2024
'.esc_html__('To allow your users to be able to login through their LinkedIn Account, you first need to create a LinkedIn App. For that follow the Project creation steps below.', 'loginizer').'
- '.esc_html__('Go to LinkedIn Apps page for that','loginizer').' Navigate to https://www.linkedin.com/developers/apps
- '.esc_html__('Once you open the Apps page, click on Create App button, which will take you to fill a form.', 'loginizer').'
- '.esc_html__('On that form fill the App Name and LinkedIn page, if you dont have a linked in page then create once as its required to create a App.','loginizer').' https://www.linkedin.com/company/setup/new/
- '.esc_html__('After you have filled the LinkedIn page details, upload your logo and read terms and conditions and check the field which say I have read and agreed to these terms and then click on Create App','loginizer').'
- '.esc_html__('You will be redirect to your App page in Product Tab, there look for "Sign In with LinkedIn using OpenID Connect" and click on Request Access, now go to the Auth tab as we need to access Oauth 2.0','loginizer').'
- '.esc_html__('On the Auth tab copy the Client ID and Client Secret and place those keys in Client ID and CLient Secret of the Loginizer LinkedIn Social provider respectively and enable it and save it','loginizer').'
- '.esc_html__('Now on LinkedIn Auth page you will need to add Redirect URL, for that add this URL there', 'loginizer').'
'.esc_url(wp_login_url()).'?lz_social_provider=LinkedInOpenID
- '.esc_html__('After that you can test in the Loginizer dashboard to see if it is working without any issue', 'loginizer').'