Search results for: disable

Disable Posts in Admin

Hide the Posts menu from the admin if you don't need the default Posts post type.

400+

Disable the Excerpt in RSS Feeds

Hide the excerpt or content from your RSS feeds.

300+

Move WooCommerce Category Description Below Products

The following snippet moves the WooCommerce description from the default location (page header subheading) to below…

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);

<10

Disable Site Admin Email Verification

Stop WordPress from asking you to confirm the administrator email address when logging in.

900+

Disable Automatic Trash Emptying

Prevent WordPress from automatically deleting trashed posts after 30 days.

300+

Disable Blog Posts

// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…

Disable Update Notice for Non-admin Users

Don't show WordPress version update notices to users that can't update the site.

1.4k

Disable Login Autofocus

Prevent autofocus on the username field on the login page.

600+

Disable Admin Password Reset Emails

Don't send an email to the administrator of the site after a user resets their password.

800+

Hide ‘Screen Options’ Tab

Remove the Screen Options menu at the top of admin pages.

1.0k

Remove Dashboard Welcome Panel

Hide the Welcome Panel on the WordPress dashboard for all users.

3.2k

Keep Emoticons

WordPress converts all emoticons to emoji. This small snippet prevents that, without removing emojis from your…

1 13 14 15 16 17 23