Search results for: disable

Disable Wordpress image compression

// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…

Remove title on all pages for Hello Theme

By default Hello theme displays page title at the top of every page. While you can…

Disable All Admin Notices individually

function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');

Disable Embeds

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

1.6k

Disable The WP Admin Bar

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

18k

Disable Search

Completely disable search on your WordPress website.

4.9k

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.

1.5k

Disable Site Health

Completely hide the Site Health menu item and dashboard widget.

1.0k

Fully Disable Comments & Trackbacks (The "Nuclear" Option)

* Fully Disable Comments & Trackbacks (The "Nuclear" Option) * Optimized for performance and UI clarity.

Disable Nonce Check For Non Logged In Users

Disables the nonce check for non-logged in donors, usually for those using page caching which causes…

MemberPress: Disable MemberPress Protection On Multiple Specified Pages

This snippet allows disabling the MemberPress protection (unprotect) on multiple specified pages. The code snippets overrides…

MemberPress: Disable MemberPress Protection On Specific Page

This snippet allows disabling the MemberPress protection (unprotect) on a specific page. The code snippets overrides…

MemberPress: Disable MemberPress Protection Based on Custom Post Type And Tag

This code snippet disables content protection for specific post types that are also tagged with a…

1 3 4 5 6 7 23