Disable Search

Completely disable search on your WordPress website.

3.5k

Disable Gutenberg Code Editing for Non-Admin Users

Prevent non-admin users from using "Edit as HTML" or "Code editor" in the Gutenberg Editor.

800+

Disable jQuery Migrate

Prevent loading the jQuery Migrate script in the frontend.

200+

Disable Enter Key in WPForms

Disables the Enter key for all forms created with WPForms.

60+

Prevent Copy Paste

This JavaScript snippet prevents right-click and copy events on the frontend

20+

Remove Unused JS

/** * We will Dequeue the jQuery UI script as example. * * Hooked to the…

Remove Gutenberg Blocks Library CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Disable Auto-generated Image Sizes

When we upload any media, WordPress automatically generates other extra sizes of it. It may eat…

Remove Default jQuery

// Remove default WordPress jquery wp_deregister_script( 'jquery' ); //Remove jquery migrate add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); function…

Remove users from WP-JSON

Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.

Remove "Login with GoDaddy" from GoDaddy Managed WordPress

When using a managed WordPress account with GoDaddy, they make the Login for WordPress show a…

Chris Klosowski PRO
<10

Chatbot

Chatbot that helps with client services and questions.

Clear Auto Fill in WooCommerce Checkout

Clears the auto fill on the WooCommerce Checkout page.

Remove Gutenberg Blocks CSS

add_action( 'wp_enqueue_scripts', function () { wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); // Remove WooCommerce block CSS…

Hide Price & Add to Cart for Non Logged in Users for Specific Products

This code snippet allows you to hide the price and 'Add to Cart' button for users…

1 2 3 4