How to create a Dashboard from Gravity Form entries Gravity Forms offers a number of methods for extracting data. In this example, we will : Create a Widget for your WordPress backend Extract the … [+]
How to remove dashboard widgets in WordPress admin How can I hide widget from dashboard admin in WordPress? Insert this code on your plugin: <?php /* * Remove dashboard widgets * */ … [+]
Change menu items and order in WordPress Admin How can I change and re-order admin menu in WordPress? Please see below a code exemple, to add to your plugin ou functions.php file: <?php // … [+]
Remove the Screen Options and Help Tab in Dashboard How can I remove the 2 panels in WordPress Admin Dashboard? Insert this code on your functions.php file or plugin: <?php /** * Remove the Screen … [+]
How to remove access to menu options in admin panel How can I restrict access to menu or submenu items in WordPress admin dashboard according to the user’s role ? This function allow to restrict … [+]
How to remove menu item in WordPress admin panel How can I hide menu or submenu items in WordPress admin dashboard according to the user’s role ? Insert this code on your functions.php file … [+]
How to hide tools option in menu bar if no submenu is available How can I automatically remove tools menu in WordPress admin dashboard if no option are available (for example for a user with the editor role). … [+]
Remove panels from the dashboard How can I remove panels from the WordPress Dashboard? To remove all panels, add this code to your functions.php file /** * Remove all panels from … [+]