├── README.md ├── css ├── button-color.css ├── change-dashboard-logo.css ├── change-ga-matomo-chart-label-color.css ├── custom-updates-style.css ├── custom-widgets-column-widgth.css ├── hide-tooltips.css ├── move-go-to-wp-admin-to-top.css ├── navigation-color.css └── widget-background.css ├── js ├── basic-usage-example.js └── jquery-usage-example.js └── php ├── custom-go-to-wp-admin-button-url.php ├── custom-mainwp-menu-header.php ├── custom-sites-column-wp-version.php ├── custom-support-for-premium-plugins-updates.php ├── disable-daily-email.php ├── file-uploader-allow-filetypes.php ├── force-wp-admin-theme-and-remove-profile-theme-picker.php ├── site-table-fixed-columns.php └── specific-time-for-emails.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/README.md -------------------------------------------------------------------------------- /css/button-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/button-color.css -------------------------------------------------------------------------------- /css/change-dashboard-logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/change-dashboard-logo.css -------------------------------------------------------------------------------- /css/change-ga-matomo-chart-label-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/change-ga-matomo-chart-label-color.css -------------------------------------------------------------------------------- /css/custom-updates-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/custom-updates-style.css -------------------------------------------------------------------------------- /css/custom-widgets-column-widgth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/custom-widgets-column-widgth.css -------------------------------------------------------------------------------- /css/hide-tooltips.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/hide-tooltips.css -------------------------------------------------------------------------------- /css/move-go-to-wp-admin-to-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/move-go-to-wp-admin-to-top.css -------------------------------------------------------------------------------- /css/navigation-color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/navigation-color.css -------------------------------------------------------------------------------- /css/widget-background.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/css/widget-background.css -------------------------------------------------------------------------------- /js/basic-usage-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/js/basic-usage-example.js -------------------------------------------------------------------------------- /js/jquery-usage-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/js/jquery-usage-example.js -------------------------------------------------------------------------------- /php/custom-go-to-wp-admin-button-url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/custom-go-to-wp-admin-button-url.php -------------------------------------------------------------------------------- /php/custom-mainwp-menu-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/custom-mainwp-menu-header.php -------------------------------------------------------------------------------- /php/custom-sites-column-wp-version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/custom-sites-column-wp-version.php -------------------------------------------------------------------------------- /php/custom-support-for-premium-plugins-updates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/custom-support-for-premium-plugins-updates.php -------------------------------------------------------------------------------- /php/disable-daily-email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/disable-daily-email.php -------------------------------------------------------------------------------- /php/file-uploader-allow-filetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/file-uploader-allow-filetypes.php -------------------------------------------------------------------------------- /php/force-wp-admin-theme-and-remove-profile-theme-picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/force-wp-admin-theme-and-remove-profile-theme-picker.php -------------------------------------------------------------------------------- /php/site-table-fixed-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/site-table-fixed-columns.php -------------------------------------------------------------------------------- /php/specific-time-for-emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainwp/mainwp-custom-dashboard-extension-examples/HEAD/php/specific-time-for-emails.php --------------------------------------------------------------------------------