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…

Remove the Article schema from Posts

This snippet removes the Article schema from Posts

10+

Dynamically Change the SEO Title of a Specific Term Before the Metadata is Saved

The code snippet below can be used to dynamically change the SEO title of a specific…

10+

Change the Payment Delimiter Inside Email Notifications

This snippet changes the default separator for payment details in emails.

10+

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(…

10+

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+

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(…

10+

How to Disable Browser Autocomplete for Form Fields - all fields

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

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+

Collect National Id Number

Add a field that collects the donor's national ID number, or any other text field.

Add Campaigns Menu

Add a top-level Campaigns menu tab to the menu in the WordPress dashboard.

Add a color picker field in Formidable Forms

Install this snippet and add 'frm-color-picker' in the 'CSS Layout Classes' setting for a field.

Display Post and Page IDs in WordPress Columns

This PHP code enables you to display the IDs of posts and pages within WordPress columns.…

display user name in a menu

/** * Show a user's display name/user name in a WordPress menu. * Once this code…

Automatically Delete Woocommerce Images After Deleting a Product

Automatically Delete Woocommerce Images After Deleting a Product

1 25 26 27 28 29 170