Remove title on all pages for Hello Theme

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

Require a comments with rating

Return the number of the rating that should not require a comment.

<10

Remove Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

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…

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

Hotfix: Remove Stripe Statement Descriptor

In EDD 3.2.8, Easy Digital Downloads changed how Statement Descriptors are used with Stripe Payments to…

remove auto linkig

remove_filter( 'comment_text', 'make_clickable', 9 );

Move Jump to Recipe above featured image in Genesis

/** * Ensures the "Jump to Recipe" button is added above the featured image. */ add_action(…

<10

Disable delayed customer recalculations

In EDD 3.1.1.4+, to improve checkout performance, the recalculation of a customer's stats were deferred by…

Disable Rich Pins

This code snippet will disable all rich pins on your site, not just recipes.

<10

Disable Order Receipt Email Optimizations

In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…

Disable EDD Software Licensing Activation/Deactivation Logs

By default, when a license is activated or deactivated EDD Software Licensing adds a log entry…

Disable Enter Key in WPForms

Disables the Enter key for all forms created with WPForms.

<10
1 2 3 4