Search results for: disable
Disable Inspector Tabs
Revert having a separate tab for block styles.
Disable WP Texturize
Disable WP Texturize Everywhere
Disable WordPress Admin Bar for all users
Disable WordPress Admin Bar for all users
Disable autogenerated shipping details schema for WooCommerce
This code snippet will disable AIOSEO autogenerated shipping details schema for WooCommerce Products
Disable RSS - Feed
Disable RSS - Feed
[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.
Disable XML-RPC
On sites running WordPress 3.5+, disable XML-RPC completely.
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.
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' );