Add User Dashboard Menu

Include the User Dashboard menu at the top of all pages that are included in the…

Add Campaign Title To Start

Easily add the campaign name as a heading before the donation form.

Display Donation Form

Display a specific campaign's donation form.

Remove Login Form

Remove the login prompt from being displayed before the donation form.

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.

10+

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…

10+

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

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+
1 25 26 27 28 29 177