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 Suggested Donation Description In Campaign (Legacy)
Add this to your theme's function.php file.
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.
Disable The WP Admin Bar
Hide the WordPress Admin Bar for all users in the frontend.
Disable Search
Completely disable search on your WordPress website.
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.
Disable Site Health
Completely hide the Site Health menu item and dashboard widget.
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…