Search results for: disable

Remove Google Fonts (non-Elementor)

function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );

Disable New User Notifications

Prevent the admin user from getting new user notification emails.

600+

Disable Donation Receipt For Offline Donations

/** * Disable the donation receipt email for offline donations. */ add_filter( 'charitable_send_donation_receipt', /** * Our…

Force product type for all products

// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…

Disable XML-RPC

On sites running WordPress 3.5+, disable XML-RPC completely.

15k

Use Full Store Address in Ships From

add_filter( 'wcv_product_ships_from', 'ships_from_address' ); function ships_from_address( $field ){ global $post, $product; $shipping_disabled = wc_string_to_bool( get_option( 'wcvendors_shipping_management_cap',…

Disable WordPress 6.5 Font Library

Deactivate the font library feature added in WordPress 6.5.

10+

Disable WP Texturize

// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );

<10

Disable WordPress Sitemaps

Disable the auto-generated WordPress Sitemaps added in version 5.5.

300+

Disable Shortcode Parsing in All in One SEO

This filter can be used to prevent AIOSEO from parsing shortcodes.

<10

Use Full Store Address in Ships From

By default the Ships From metadata displayed under the add to cart button only shows the…

Disable Application Passwords

Disable Application Passwords feature that was added in WP 5.6.

40+

Disable Dynamic Template on the Homepage/Front-page

The following snippet can be used to remove the dynamic template assigned to all pages from…

Disable Rich Pins

This code snippet will disable all rich pins on your site, not just recipes.

<10

Disable jQuery Migrate

Prevent loading the jQuery Migrate script in the frontend.

100+
1 2 3 4 5 6 11