Search results for: disable
AJAX Grid Search (single grid)
Add ID of #gridSearch to the search form. Give your grid a class of .grid-results.
Disable "Scheduled export e-mail of ... returned false when sending to ..." notice in Scheduled Exports
function custom_woo_ce_cron_export_email_wp_mail_failure_notice() { // Turn off the error notice return false; } add_filter( 'woo_ce_cron_export_email_wp_mail_failure_notice', 'custom_woo_ce_cron_export_email_wp_mail_failure_notice' );
AJAX Grid Search (multiple grids)
Add ID of #gridSearch to the search form. Give your multiple grid container a class of…
Disable the AIOSEO Flyout Menu for Non-Administrator Users.
This snippet can be used to disable the AIOSEO flyout menu for non-administrator users.
Enable automatic updates for WordPress core, plugins, and themes
// Enable automatic updates for WordPress core, plugins, and themes add_filter('automatic_updater_disabled', '__return_false'); add_filter('auto_update_core', '__return_true'); add_filter('auto_update_plugin', '__return_true');…
Disable Block Directory
Prevent block directory results from being shown when searching for blocks in the editor.
Disable Full Site Editing (FSE)
Prevent any user from making changes to the site using the Full Site Editor.
Disable Comment Form Website URL
Remove the Website URL field from the Comments form.
Disable Posts in Admin
Hide the Posts menu from the admin if you don't need the default Posts post type.
Untitled Snippet
// Disable Gutemberg add_filter( 'use_block_editor_for_post', '__return_false', 10 );
Disable the Excerpt in RSS Feeds
Hide the excerpt or content from your RSS feeds.
Disable Gutenberg Editor (use Classic Editor)
add_filter('gutenberg_can_edit_post', '__return_false', 5); add_filter('use_block_editor_for_post', '__return_false', 5);
Disable Site Admin Email Verification
Stop WordPress from asking you to confirm the administrator email address when logging in.
Remove "Login with GoDaddy" from GoDaddy Managed WordPress
When using a managed WordPress account with GoDaddy, they make the Login for WordPress show a…
Disable Attachment Pages
Hide the Attachment/Attachments pages on the frontend from all visitors.