Search results for: disable
Disable All UpdraftPlus Email Notifications
This snippet completely disables all email notifications from UpdraftPlus, including backup reports, error notifications, warnings, and…
Disable RSS Feeds
Turn off the WordPress RSS Feeds for your website with 1 click.
Prevent Wholesale Customer to Add Product to the Cart If The Product is Low on Stock
// Prevent wholesale customer to add to cart if the product is low on stock add_filter('woocommerce_is_purchasable',…
How to Disable Browser Autocomplete for Form Fields - specific fields
/** * Disable autocomplete for a specific form and field ID * * @link https://wpforms.com/developers/disable-browser-autocomplete-for-form-fields/ */…
Disable Auto-generated Image Sizes
When we upload any media, WordPress automatically generates other extra sizes of it. It may eat…
Disable Product delete for published products only
/** * This will disable delete only for published products, leaving drafts to be able to…
Tyler Hall Tech Custom Snippets
All the Goodies
Disable Schema Output for WooCommerce products
This filter can be used to Disable Schema Output for WooCommerce products.
MemberPress: Disable Reminders if a Member has Any Active Subscription
MemberPress reminders are triggered by each individual subscription. Thus, reminders will be automatically triggered by for…
How to Disable Browser Autocomplete for Form Fields - all fields
/** * Disable form autocomplete for all fields on a specific form * * @link https://wpforms.com/developers/disable-browser-autocomplete-for-form-fields/…
How to Disable reCAPTCHA for Automated Testing
/** * Disable for automated testing. * * @link https://wpforms.com/developers/how-to-disable-recaptcha-for-automated-testing/ */ // Disable reCAPTCHA assets and…
Disable AIOSEO Schema markups for a specific page
This snippet removes the AIOSEO Schema Markups from a specific page. Note: Replace '1209' with the…
Disable All Updates
Hide all updates for WordPress Core, Plugins and Themes.
Disable Update Emails
// Disable auto-update email notifications add_filter('auto_core_update_send_email', 'disable_auto_update_emails', 10, 4); function disable_auto_update_emails($send, $type, $core_update, $result) { if…
Disable a Form Field to Prevent User Input
This snippet will render any Single Line Text or Paragraph Text field as read-only which will…