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…
Display Featured Image in Post List
Make featured image visible in post list and quick edit view for any kind of post…
Allow Webp, SVG, ICO
A Pro Snippet
increase upload memory
upload_max_filesize = 256M post_max_size = 256M max_execution_time = 300 />
Hide the last item in the breadcrumb trail
This filter can be used to hide the last item in the breadcrumb trail.
Remove Address Line 2 from the Local SEO address output on the front end
This filter can be used to remove Address Line 2 from the Local SEO address output…
Disable Update Emails
// Disable auto-update email notifications add_filter('auto_core_update_send_email', 'disable_auto_update_emails', 10, 4); function disable_auto_update_emails($send, $type, $core_update, $result) { if…
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”…
Change the Payment Delimiter Inside Email Notifications
This snippet changes the default separator for payment details in emails.
How to Restrict Numbers in a Single Line Text Form Field
/** * Disallow numbers in a single-line text field * * @link https://wpforms.com/developers/how-to-restrict-numbers-in-a-single-line-text-form-field/ */ function wpf_dev_disallow_numbers_text_field(…
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…
How to Add Address Field Validation For Authorize.net
/** * Add address validation for Authorize.net address fields * * @link https://wpforms.com/developers/how-to-add-address-field-validation-for-authorize-net/ */ function wpf_dev_authorize_address_validation(…
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 */…
Display Post and Page IDs in WordPress Columns
This PHP code enables you to display the IDs of posts and pages within WordPress columns.…
Automatically Delete Woocommerce Images After Deleting a Product
Automatically Delete Woocommerce Images After Deleting a Product