Remove Gutenberg Block CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Remove Google Fonts (non-Elementor)

function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );

Allow WebP Files Upload

The provided PHP code is intended to enable the upload of WebP image files in WordPress…

WP Simple Pay: Add More Aggressive Rate Limiting

Changes the various default rate limit settings.

Remove users from WP-JSON

Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.

Change the Default Taxonomy Slug “locations-category”

This filter can be used to change the default taxonomy slug “locations-category”.

<10

Change the Post ID Being Processed by AIOSEO

This snippet can be used to change the Post ID being processed by AIOSEO.

<10

Prevent AIOSEO From Outputting any Data on Category Archive Pages

Prevent AIOSEO from outputting any data on category archive pages.

<10

Changing sublabels for Email Field on a Single Form

This snippet is used to change sublabel for Email field on a specific form. Be sure…

<10

Set a specific language for Cloudflare Turnstile.

/** * Set a specific language for Cloudflare Turnstile. * * @link https://wpforms.com/developers/how-to-set-the-language-for-cloudflare-turnstile */ function wpf_add_turnstile_language_script()…

<10

How to Defer the reCAPTCHA Script

/** * Defer the reCAPTCHA script until after the page loads * * @link https://wpforms.com/developers/how-to-defer-the-recaptcha-script/ */…

<10

How to Disable Browser Autocomplete for Form Fields - specific fields

/** * Disable autocomplete for a specific form and field ID * * @link https://wpforms.com/developers/disable-browser-autocomplete-for-form-fields/ */…

<10

Make Form Fields Required Not Required

This example shows how to make a form field required or not required.

Add Dynamic Hidden Field

Dynamically set as a hidden field in the donation form, based on the ID of the…

1 30 31 32 33 34 196