Search results for: disable
Disable Donation Receipt For Offline Donations
Disable the donation receipt email for offline donations.
Force product type for all products
// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…
Disable Inspector Tabs
Revert having a separate tab for block styles.
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 Post Formats
Disable the Post Formats feature for all posts.
Disable WordPress 6.5 Font Library
Deactivate the font library feature added in WordPress 6.5.
Disable WP Texturize
// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );
Disable Widgets blocks
//Disable Widgets blocks add_filter( 'use_widgets_block_editor', '__return_false' );
Use Full Store Address in Ships From
By default the Ships From metadata displayed under the add to cart button only shows the…
Disable Shortcode Parsing in All in One SEO
This filter can be used to prevent AIOSEO from parsing shortcodes.
Disable Application Passwords
Disable Application Passwords feature that was added in WP 5.6.
Disable Rich Pins
This code snippet will disable all rich pins on your site, not just recipes.
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 Emoji Image Conversion Script of the Classic Editor
This filter can be used to disable the emoji image conversion script of the Classic Editor…
Prevent Discounts on Upgrades
Does not allow a discount code to be applied when an license upgrade is present in…