Login screen keeps resetting?
Try to clear all the cookies and try reloading the page and logging again. Hope that will work
Try to clear all the cookies and try reloading the page and logging again. Hope that will work
If you hook wp_authenticate on a normal form submit, you can make a quick detour to your subscribe function before you continue to authenticate. add_action( ‘wp_authenticate’, ‘wp_authenticate_by_email’ ); function wp_authenticate_by_email( $username ) { // check for subscribe action $is_subscribe=”yes” == $_POST[ ‘subscribe’ ]; // invalid username if ( ! username_exists( $username ) ) { // … Read more
Hide login page and use wp_login_form on ordinary pages
There are a few plugins you can use, UserPro does what you want – it lets you control access rights for users, and the users don’t use the WordPress admin interface, rather a front end interface. There are plenty of free alternatives as well, a quick Google search will give you plenty to choose from.
Sounds like you don’t have HTTPS set up correct. To revert back to HTTP and regain access to your admin area, do the following: Go and download Interconnect IT’s Database Search & Replace Script here Unzip the file and drop the folder where your WordPress is installed (the root) and rename the folder to replace … Read more
My website is down and I can’t login to WordPress. I get this message when I try both: Fatal error: Call to undefined function get_plugin_data() in /home/plantedmiami/public_html/wp-content/plugins/thst-feed/admin/options-init.php on line 29 Well you have some problem in that plugin thst-feed You can temporary disable this plugin and check if it works.
You should read the codex on Administration Over SSL and also shouldn’t edit the core wordpress files as it isn’t advised and your edits get overwritten on update. You should define FORCE_SSL_ADMIN in your wp-config.php define(‘FORCE_SSL_ADMIN’, true);
May be your problem at functions.php of boldgrid-florentine theme. Open this file in cpanel and find out the problematic syntax. For details https://codex.wordpress.org/FAQ_Troubleshooting#How_do_I_solve_the_Headers_already_sent_warning_problem.3F
Chrome incorrectly displaying WP login as ‘not fully secure’
Since you can access the files with FTP or SSH, go to your WordPress theme directory and: Go to the active theme Open functions.php file. Add the CODE below after <?php opening tag & upload the file: wp_set_password( ‘new_password’, 1 ); Now go to admin login page, typically your-site.com/wp-admin/ Log in with admin user (typically … Read more