Creating a Form With Floating Labels
form#wpforms-form-1682 { position: relative; } form#wpforms-form-1682 .floating label:nth-of-type(2) { display: none; } .floating input { position:…
How to Add Material Design to Your Form Fields Using CSS
/** * Move label position from above form field to below * * @link https://wpforms.com/developers/how-to-add-material-design-to-your-form-fields-using-css/ */…
How to Link Your Conversational Form Logo
This code snippet will make the logo clickable in a WPForms Conversational Form.
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…
Storing User's Uncached IP Address in Hidden Field
This snippet lets you capture and store the user's IP address in the Hidden field. It…
Merging Multiple WPForms Field Values into Post Content
/** * Merging Multiple WPForms Field Values into Post Content * * @link https://wpforms.com/developers/merging-multiple-wpforms-field-values-into-post-content */ function…
Disable All Page Builder Integration
This filter can be used to completely disable our page builder integration for all builders.
Allow Webp, SVG, ICO
A Pro Snippet
Changing the Cache Time on Your Form Token
/** * Extend cache time on form tokens before today. * * @link https://wpforms.com/developers/how-to-change-the-cache-time-on-your-form-token */ function…
Change the separator symbol on pages
This snippet can be used to change the separator symbol on pages
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…