Hiding Page Breaks When Using Conditional Logic

This snippet will hide pages in your form that include fields hidden with conditional logic if…

10+

Add Featured Image

Add a featured image to the individual campaign pages.

Remove Login Form

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

Remove the Article schema from Posts

This snippet removes the Article schema from Posts

10+

Restricting Address Autocomplete to a Specific Country

This snippet is used to modify the default behavior of the address autocomplete feature in WPForms.…

10+

How to Add an Empty Dropdown to Dropdown Items

This snippet maintains a clean "--Select--" option without the zero price display when using the Dropdown…

10+

Add User Dashboard Menu

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

Display Featured Image in Post List

Make featured image visible in post list and quick edit view for any kind of post…

increase upload memory

upload_max_filesize = 256M post_max_size = 256M max_execution_time = 300 />

Disable Custom Link Format of AIOSEO in the Block and Classic Editors

This snippet can be used to disable the custom link format that All in One SEO…

10+

Disable All Page Builder Integration

This filter can be used to completely disable our page builder integration for all builders.

10+

Displaying Shortcodes Inside Form Label Fields

/** * Run shortcodes on the form label field. * * @link https://wpforms.com/developers/how-to-display-shortcodes-inside-the-label-of-the-form-field/ */ function add_shortcode_to_label(…

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…

display user name in a menu

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

1 22 23 24 25 26 149