Search results for: disable

Disable Inspector Tabs

Revert having a separate tab for block styles.

Disable WP Texturize

Disable WP Texturize Everywhere

<10

Disable autogenerated shipping details schema for WooCommerce

This code snippet will disable AIOSEO autogenerated shipping details schema for WooCommerce Products

300+

[IG] iOS Double-Click required to open lightbox fix

This snippet can be added in the functions.php file of a child theme to disable the…

Disable EDD Software Licensing Activation/Deactivation Logs

By default, when a license is activated or deactivated EDD Software Licensing adds a log entry…

Disable New User Notifications

Prevent the admin user from getting new user notification emails.

1.1k

Disable XML-RPC

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

25k

Force product type for all products

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

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',…

Use Full Store Address in Ships From

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

Disable WordPress Sitemaps

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

800+

Prevent Discounts on Upgrades

Does not allow a discount code to be applied when an license upgrade is present in…

Remove Google Fonts (non-Elementor)

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

1 4 5 6 7 8 22