WorddPress website admin part not working correctly – I think ajax/json issue
WorddPress website admin part not working correctly – I think ajax/json issue
WorddPress website admin part not working correctly – I think ajax/json issue
There isn’t a WordPress core function to check if we are in the login or register page, but we can create one using the $pagenow global as mentioned in this answer. function is_login_page() { return in_array( $GLOBALS[‘pagenow’], array( ‘wp-login.php’, ‘wp-register.php’ ) ); } Then we can use this function in a Guard Clause, which, is … Read more
Tried to delete your cookies? Any chances you recently changed your site’s domain (e.g. its www pref…)? disabled all the plugins Piggybacking on Denis’s comment about the site’s domain having changed…. if you can get access to the database (ie. if your host has phpmyadmin on its control panel) check the ‘siteurl’ option in the … Read more
exclude admin archive edit screen
This problem looks a bit too complicated and localized to come up with a definitive answer, but it looks like an execution order issue. Here are some suggestions what you could check: You are using a variable in your translation function. Do not do this. I’m not sure where that Woocommerce-action is executed, but it … Read more
how to set not to be logined in wp-admin except administrator?
How to hide comments from private posts on user dashboard
I’ve seen something similar to this but your situation may be different. In my particular situation, the server did not have enough resources to use Visual Composer and support all the visitors on the site. Try to make your updates at a time when you have the least amount of active visitors and you might … Read more
It turns out it WAS the firewall after all. I asked their IT guy to create a ticket w/ Barracuda JIC. Barracuda found the issue and created a rule to allow it in. It had to do with IPS (not sure what that is).
Admin login substantially slower on production server