Can’t access dashboard
You can log in to your phpMyAdmin and change the values “siteurl” and “home” in the database table wp_options.
You can log in to your phpMyAdmin and change the values “siteurl” and “home” in the database table wp_options.
To read a excel file inside wordpress, is there any function available WordPress does not provide functions for reading spreadsheets. PHP provides functions for reading CSV files via fgetcsv etc, but these are for .csv files. If you want to open an xls or xlsx file in code, and read its contents, you will need … Read more
Yes, server do not need any user input to complete the update, and once the request was received by the server it do not terminate it even if the connection to the browser had died (this is why it is actually impossible to cancel operations once started). Still it is probably better to leave it … Read more
Try this: add_menu_page( ‘MDW Config’, ‘MDW Config’, ‘manage_options’, ‘mdw-config’, ‘config_general_info’, ”, 45); add_submenu_page( ‘mdw-config’, ‘General info’, ‘Info’, ‘manage_options’, ‘mdw-config’, ‘config_general_info’); add_submenu_page( ‘mdw-config’, ‘Google Analytics Integration’, ‘Google Analytics’, ‘manage_options’, ‘ga-integration’, ‘config_ga_integration’); What you have to do is simply overwrite the name of your first submenu page by assigning it to the same menu-slug but with different … Read more
This is due to plugin or theme complications on your website. SO try to deactivate all the plugins and active one by one to figure out the issue. Also, check console if there are any errors Also, check with the default theme.
The only time I’ve seen this happen is with a theme using JavaScript that is conflicting with the JavaScript in the WordPress administration area. If this is what is happening to you then its a poorly-coded theme and you should change to a different theme. If this is a premium theme you should contact the … Read more
Jonnny, I would highly recommend checking out Edit Flow. It does add a notification to the dashboard about Pending posts, as well as a host of other things. The plugin is aimed at organizing a whole team of content creators. It’s well described at editflow.org.
At first you have to remove the submenu and then add it again. The code should look something like this: add_action( ‘admin_menu’, ‘register_my_custom_menu_page’ ); function register_my_custom_menu_page( ) { remove_submenu_page( ‘themes.php’,’nav-menus.php’) ; add_menu_page( ‘Menus’, ‘menu’, ‘manage_options’, ‘nav-menus.php’ ); } See the WordPress Codex
It’s not the menu you need to adjust – it’s your roles and capabilities. By default, a WP Core Author has “Dashboard” in their menu. You’re correct, they do not have a submenu under Dashboard, but clicking Dashboard takes them to the same page as “Dashboard > Home” for other users. You may want to … Read more
Have you taken a look at the error logs? Who is your host? Do you have Process Manager or anything similar to be able to tell what processes are running? A way to tell where most of your bandwidth is being used? Just some ideas on where you might be hitting resource limits. How large … Read more