Search results for: disable

Disable Embeds

Remove an extra request and prevent others from adding embeds in your site.

1.0k

Disable Nonce Check For Non Logged In Users

/** * Page caching causes problems for donors who are not logged in. * * This…

Disable The WP Admin Bar

Hide the WordPress Admin Bar for all users in the frontend.

10k

Disable autogenerated shipping details schema for WooCommerce

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

<10

Disable Search

Completely disable search on your WordPress website.

3.2k

Disable Pages and Post from Appearing in Wordpress Search Results

Using WPCode, apply the following code snippet to effectively disable certain pages from appearing in the…

Disable Plugin & Theme Editor

Prevent users from using the Plugin & Theme file editor.

600+

Disable Site Health

Completely hide the Site Health menu item and dashboard widget.

400+

Completely Disable Comments

add_action('admin_init', function () { // Redirect any user trying to access comments page global $pagenow; if…

<10

Disable Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

<10

Prevent Discounts on Upgrades

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

WP Simple Pay: Disable Stripe Payment Terms

Disable the automatically generated payment form mandates. NOTE: No recommended. Some payment methods require mandates to…

Disable Order Receipt Email Optimizations

In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…

Remove Google Fonts (non-Elementor)

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

1 2 3 4 5 11