Disable Search
Completely disable search on your WordPress website.
Disable Gutenberg Code Editing for Non-Admin Users
Prevent non-admin users from using "Edit as HTML" or "Code editor" in the Gutenberg Editor.
Disable jQuery Migrate
Prevent loading the jQuery Migrate script in the frontend.
Disable Enter Key in WPForms
Disables the Enter key for all forms created with WPForms.
Prevent Copy Paste
This JavaScript snippet prevents right-click and copy events on the frontend
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 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…
Remove Default jQuery
// Remove default WordPress jquery wp_deregister_script( 'jquery' ); //Remove jquery migrate add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); function…
Move Jump to Recipe above featured image in Genesis
/** * Ensures the "Jump to Recipe" button is added above the featured image. */ add_action(…
Chatbot
Chatbot that helps with client services and questions.
Allow mobile zoom
function et_add_viewport_meta(){ echo ''; }
Clear Auto Fill in WooCommerce Checkout
Clears the auto fill on the WooCommerce Checkout page.