Search results for: disable
MemberPress: Disable MemberPress Protection On Posts with Specific Tags
This code snippet disables content protection for posts that are tagged with a specific term (e.g.,…
MemberPress: Disable MemberPress Protection Based on Custom Post Type And Tag
This code snippet disables content protection for specific post types that are also tagged with a…
MemberPress: Disable MemberPress Protection On Specific Page
This snippet allows disabling the MemberPress protection (unprotect) on a specific page. The code snippets overrides…
MemberPress: Disable MemberPress Protection On Multiple Specified Pages
This snippet allows disabling the MemberPress protection (unprotect) on multiple specified pages. The code snippets overrides…
Disable XML-RPC
On sites running WordPress 3.5+, disable XML-RPC completely.
Disable New User Notifications
Prevent the admin user from getting new user notification emails.
Disable Shortcode Parsing in All in One SEO
This filter can be used to prevent AIOSEO from parsing shortcodes.
Disable Donation Receipt For Offline Donations
Disable the donation receipt email for offline donations.
Remove Google Fonts (non-Elementor)
function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );
Prevent Discounts on Upgrades
Does not allow a discount code to be applied when an license upgrade is present in…
Disable WordPress Sitemaps
Disable the auto-generated WordPress Sitemaps added in version 5.5.
Force product type for all products
// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…
Disable Order Receipt Email Optimizations
In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…
WP Simple Pay: Disable Stripe Payment Terms
Disable the automatically generated payment form mandates. NOTE: No recommended. Some payment methods require mandates to…
Disable Emojis
/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…