Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

login

How can I make an Ajax login form work with FORCE_SSL_ADMIN enabled?

There are ways of doing it; this way, for instance. My guess is that Login With Ajax isn’t using all of the techniques described in that article, and some browser security feature is blocking it. Try getting in touch with the developer and suggesting improvements, with a pointer to that article.

Categories plugins Tags admin, ajax, login, plugins, ssl

Login with OpenID, similar to Stack Exchange sites?

Try Make Your Site Social plugin which does most of the job for you

Categories plugins Tags login, openid, plugins

How do I change the language of only the login page?

This will need to go in a plug-in, just put the following inside a file (login-languge.php) in wp-content/plugins/ /* Plugin Name: Log-in Language Plugin URI: http://wordpress.stackexchange.com/questions/72692/how-do-i-change-the-language-of-only-the-login-page Description: Changes the language for log-in/register screens only Author: Stephen Harris Author URI: http://stephenharris.info Version: 1.0 License: GNU GPL 2 */ add_action(‘plugins_loaded’, ‘wpse72696_login_language_init’); function wpse72696_login_language_init(){ if( in_array( $GLOBALS[‘pagenow’], array( … Read more

Categories login Tags language, login, multi-language, wp-login-form

How to check in timber if user is loggedin?

Found it already, to do this you can use the ‘user’ object: {% if user %} Hello {{ user.user_nicename }} {% else %} you are not loggedin {% endif %}

Categories login Tags login

Custom login redirects to wp-admin on wrong password

While coding a custom login page, one needs to take care of the errors, else WordPress would redirect the page to /wp-admin or wp-login.php on wrong passwords or empty credentials. Please follow the below to solve this issue:– Please use the below in your theme’s functions.php file:- /** * Function Name: front_end_login_fail. * Description: This … Read more

Categories wp-admin Tags login, wp-admin

Make my wordpress blog remember my login “forever”

I think I’ll wait for such a plugin Save this code in a file named set-cookie-expire.php and upload it your plugins folder. The plugin will give you the ability to set a time (in days) that cookies expire within the WordPress Settings admin. <?php /** * Plugin Name: Set Cookie Expire * Plugin URI: http://wordpress.stackexchange.com/a/11991/1685 … Read more

Categories login Tags login

check first time login only

Whenever a new user is created, this function will add a custom field with value 1. function function_new_user($user_id) { add_user_meta( $user_id, ‘_new_user’, ‘1’ ); } add_action( ‘user_register’, ‘function_new_user’); The next function will check if it’s the first login and redirect the user. function function_check_login_redirect($user_login, $user) { $logincontrol = get_user_meta($user->ID, ‘_new_user’, ‘TRUE’); if ( $logincontrol ) … Read more

Categories redirect Tags login, redirect

Login members using web services

If I were you, I would look at solutions with Federated Identities. For example OpenID solutions. This link has a lot of examples of implementation on PHP. Advantages: open source, secure protocols, clear documentation

Categories login Tags authentication, login

wp_set_auth_cookie() doesn’t work in Ajax call

I add one function wp_set_current_user for setting up current user. add_action( ‘wp_ajax_facebook_login’, ‘facebook_ajax_login_or_register’ ); add_action( ‘wp_ajax_nopriv_facebook_login’, ‘facebook_ajax_login_or_register’ ); function facebook_ajax_login_or_register(){ $uid = sanitize_text_field( $_POST[‘uid’] ); $args = array( ‘meta_key’ => ‘fbuid’, ‘meta_value’ => $uid, ‘meta_compare’ => ‘=’, ); $fb_user = get_users($args); $current_user_id = $fb_user[0]; wp_set_current_user($current_user_id);//Set current user wp_set_auth_cookie( $current_user_id, true ); $response[success] = true; echo … Read more

Categories ajax Tags ajax, cookies, login

Adding “Remember Me” in custom login

insert this in form: <p class=”forgetmenot”><label for=”rememberme”><input name=”rememberme” type=”checkbox” id=”rememberme” value=”forever” /> Remember Me</label></p> In backend, like this: $credentials[‘user_login’] = $_POST[‘log’]; $credentials[‘user_password’] = $_POST[‘pwd’]; $credentials[‘remember’] = $_POST[‘rememberme’]; ….. wp_signon($credentials) ….

Categories PHP Tags ajax, login, php, wp-login-form
Older posts
Newer posts
← Previous Page1 … Page155 Page156 Page157 … Page162 Next →
+ More

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
Next Page »
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress