Remove Default jQuery

// Remove default WordPress jquery wp_deregister_script( 'jquery' ); //Remove jquery migrate add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); function…

Remove Recurring Donation Time Periods

This snippet removes some options for recurring donation periods with Charitable's Recurring Donations addon. This might…

Chatbot

Chatbot that helps with client services and questions.

Allow mobile zoom

function et_add_viewport_meta(){ echo ''; }

Protect Elementor Forms

/** * Protect Elementor Forms */ add_action( 'elementor_pro/forms/validation/email', function( $field, $record, $ajax_handler ) { // validate…

Disable default WordPress image sizes

// Disable default WordPress image sizes add_filter('intermediate_image_sizes', '__return_empty_array'); // Disable large scaled image size add_filter('big_image_size_threshold', '__return_false');…

Leave Tasty recipe ratings with WP-PostRatings

The Tasty Recipes rating system works with the default WordPress comment form. However, if you use…

<10

Clear Auto Fill in WooCommerce Checkout

Clears the auto fill on the WooCommerce Checkout page.

Hide sidebar on mobile device

function custom_hide_sidebar_on_mobile() { echo ' '; } add_action('wp_head', 'custom_hide_sidebar_on_mobile');

WPForms Quiz — Save results as Entry Note

This PHP snippet lets you save quiz results in Entry Notes

Ralden Souza PRO
<10

Remove address from the header

Remove address block from the header

Elementor - Fix the Accordion SEO issue

add_filter( 'elementor/widget/render_content', function ( $widget_content, $widget ) { if ( 'accordion' === $widget->get_name() ) { $widget_content…

Minify HTML

function minify_html($buffer) { // Remove comments $buffer = preg_replace('//', '', $buffer); // Remove whitespace $buffer =…

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…

1 2 3 4 … 10