Search results for: disable
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' );
Supports sending an email with a Stripe Pre-Approved payment is submitted.
By default EDD only sends a purchase confirmation when an order is marked as completed, however…
Remove Color Scheme Picker
Disable the option to change the admin color scheme in the profile page.
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 Posts in Admin
Hide the Posts menu from the admin if you don't need the default Posts post type.
Disable the Excerpt in RSS Feeds
Hide the excerpt or content from your RSS feeds.
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);
Disable Site Admin Email Verification
Stop WordPress from asking you to confirm the administrator email address when logging in.
Disable Automatic Trash Emptying
Prevent WordPress from automatically deleting trashed posts after 30 days.
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.
Disable Login Autofocus
Prevent autofocus on the username field on the login page.
Disable Admin Password Reset Emails
Don't send an email to the administrator of the site after a user resets their password.