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

10+

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/ */…

10+

How to Link Your Conversational Form Logo

This code snippet will make the logo clickable in a WPForms Conversational Form.

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+

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…

10+

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…

10+

Disable All Page Builder Integration

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

10+

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…

10+

Change the separator symbol on pages

This snippet can be used to change the separator symbol on pages

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 23 24 25 26 27 152