Search results for: disable
Disabling Past Times on the Date / Time Field
This snippet disables past times on the Time Picker field in WPForms.
Completely Disable Comments
Disable comments for all post types, in the admin and the frontend.
Disable Emojis
Disable Emoji's in WordPress to improve your site's performance
Disable Donations After Goal Is Reached
Disables donations to campaigns after they have reached their goal.
Disable emails on free purchases
If the purchase was for a free product, don't send any emails.
Disable Wish Lists by Category
Customize this plugin to remove wish lists from certain categories of downloads
Disable WooCommerce widgets on vendor store pages
/** * Remove widgets from the vendor store and single product pages conditionally. * * You…
Disable All Admin Notices individually
function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');
Disable Suggested Donation Description In Campaign (Legacy)
Add this to your theme's function.php file.
Remove title on all pages for Hello Theme
By default Hello theme displays page title at the top of every page. While you can…
Disable Wordpress image compression
// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…
Disable AIOSEO Admin Menu Bar
This filter can be used to Disable AIOSEO Admin Menu Bar.
Disable the Last Updated Date in Index/Root XML Sitemap
This filter can be used to disable the Last Updated date that All in One SEO…
MemberPress: Disable the Default WordPress Password Reset Link E-Mail
If the "Disable Password Fields on membership registration forms" option is active in MemberPress settings (Dashboard…
Remove "mail.readwrite" Scope for the Outlook Mailer
This snippet removes the `mail.readwrite` scope from the WP Mail SMTP plugin Outlook provider.