Disable OpenGraph Tags on all Listing Detail Pages

This snippet disables OpenGraph Tags on all pages whose URL contains /listing-detail/

<10

How to Hide Zero Quantity Items in Dropdown Payment Field Notifications

This snippet hides items with zero quantities from your WPForms notification emails when using payment fields

<10

Remove Multiple Fields From {all_fields} in Notifications

This code snippet removes multiple fields from your email notifications while still using the {all_fields} smart…

<10

How to Add an Input Mask to the International Postal Code

/* * Custom input mask for the address field's international scheme. * * @link https://wpforms.com/developers/how-to-add-an-input-mask-to-the-international-postal-code */…

<10

Setting the Default Address Scheme to International

This snippet is used to update the default behavior of the Address field in WPForms. This…

<10

Add Image Alt Text automatic

function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…

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

Auto Register Login Link

Replaces the login link included in the Auto Register email, which directs customers to log into…

Custom Receipt Page

Redirect to custom receipt or another page after a donation is completed. Can be per campaign…

Increase the Number of Posts Imported Per Batch from SEOPress Plugin

This filter can be used to increase the default number of posts imported per batch from…

<10

Ignore Cover Image Block when “First Image in Content” is set as the Image Source

This filter can be used to ignore the cover image block when “First Image in Content”…

<10

Prevent AIOSEO From Outputting a rel=”next” Link

Prevent AIOSEO from outputting a rel=”next” link

<10

Add Multiple Checkboxes To Donation Form

This uses the "multi-checkbox" vs just "checkbox" for a single checkbox.

How to Disable reCAPTCHA for Automated Testing

/** * Disable for automated testing. * * @link https://wpforms.com/developers/how-to-disable-recaptcha-for-automated-testing/ */ // Disable reCAPTCHA assets and…

<10
1 16 17 18 19 20 92