Search results for: disable

Disable sold by link on checkout page

/** * Disable the sold by link on the checkout page */ add_filter('wcvendors_sold_by_link', 'wcv_disable_checkout_sold_by_link', 10, 2);…

Disable Enter Key in WPForms

Disables the Enter key for all forms created with WPForms.

<10

Disable Thumbnail Image Sizes

Prevent WordPress from generating specific thumbnail sizes.

10+

MemberPress: Disable Admin Password Lost/Changed Email

Disable the MemberPress Admin email notification for password lost/changed.

Disable the Email Address Suggestion

Disables email address suggestion in the Email field.

<10

Disable Wish Lists by Category

Customize this plugin to remove wish lists from certain categories of downloads

Disable All Admin Notices individually

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

Disable emails on free purchases

If the purchase was for a free product, don't send any emails.

Disable Donations After Goal Is Reached

/** * NOTE: This code snippet must be included in your theme's functions.php file, * or…

Disable Emojis

Disable Emoji's in WordPress to improve your site's performance

2.3k

Completely Disable Comments

Disable comments for all post types, in the admin and the frontend.

2.2k

Disable WooCommerce widgets on vendor store pages

/** * Remove widgets from the vendor store and single product pages conditionally. * * You…

Disable Wordpress image compression

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

<10

Remove title on all pages for Hello Theme

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

1 2 3 4 11