How to Build a Profile Page Using Post Submissions
With this snippet and the Post Submissions addon, you can create professional author profiles that automatically…
Custom Registration Fields
Add fields to the registration form.
Dynamically Displaying Years in Your Forms
/** * Dynamically display years in the forms * * @link https://wpforms.com/developers/how-to-dynamically-display-years-in-your-forms/ */ function wpf_dev_dynamic_school_year( )…
Setting a Default Featured Image for Post Submissions
This snippet is used to assign a default image that'll serve as the featured image for…
Overwriting Entries From Users Who Have Already Submitted a Form
This snippet will overwrite old entries from a user each time they submit a new one…
Disable OpenGraph Tags on all Listing Detail Pages
This snippet disables OpenGraph Tags on all pages whose URL contains /listing-detail/
Add Custom Campaign Field
This example shows how you can add a new campaign field to be displayed in Charitable…
Add Campaign Link
Add a link back to the campaign from the donation receipt.
How to Store Field Values in the WPForms Entry
/** * Show values in Dropdown, checkboxes, and Multiple Choice. */ add_action( 'wpforms_fields_show_options_setting', '__return_true' ); /**…
How to Create a Form With Floating Labels
/** * Remove the field label from the top of the field * * @link https://wpforms.com/developers/how-to-create-a-form-with-floating-labels/…
Hiding the Currency Symbol in WPForms Total Field
This code snippet removes the following currency symbols from the Total field: £, $, €.
Disable Schema Output for WooCommerce products
This filter can be used to Disable Schema Output for WooCommerce products.
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…
Custom Style Icons for Rating field
This snippet will customize your rating icons in the Rating field
Multi Step Donation Form
This snippet provides a foundation for converting the donation form into a multi-step donation form.