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' );

WP Simple Pay: Add More Aggressive Rate Limiting

Changes the various default rate limit settings.

Change Fields On Donation Form

Example on how to change labels for fields on donation form.

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

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

Admin Bar - Updates

Show updates in Admin Bar

Continue Shopping Button

/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…

Carla Mawyin
<10

WPCode Add New Snippet Skip Library Screen

This snippet enables you to skip the snippet library screen when adding a new snippet in…

<10

Disable All Admin Notices individually

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

WP Simple Pay: Add Custom CSS Classes to the Payment Button

"Payment Button" refers to the button that launches an On-site Overlay or Stripe Checkout Payment Form.

WP Simple Pay: Create WordPress User After Payment

Creates a new WordPress user when a subscription is started or a one-time payment is made.

1 18 19 20 21 22 113