Change background and color of Chrome autofill»
.top .search-form input:-webkit-autofill, .top .search-form input:-webkit-autofill:hover, .top .search-form input:-webkit-autofill:focus, .top .search-form input:-webkit-autofill:active { -webkit-box-shadow: 0 0 0 100px #222 inset !important; -webkit-text-fill-color:#fff!important; }
CSS, Forms | Type: CSS
Clear Input Field on Focus»
Not sure why you wouldn't use a placeholder instead.
Forms | Type: Javascript
Gravity Forms Ready Classes»
Add classes to GF form fields; these are the most commonly used, but look at the others also.
CSS, Forms | Type: CSS
Gravity Forms: Setting Payments Number before Termination of Subscription»
A variation from the code found at the reference link, to accommodate different numbers of payments for different feeds.
eCommerce, Forms, WP/CP | Type: PHP
Kill Extra Markup on GF»
When form displays "extra markup": empty p tags, etc
Forms | Type: PHP
Make Gravity Forms 2.6+ Compatible with Ozh Admin Menu»
Add this to adminmenu.css.php in the plugin’s inc file (if Ozh updates, must be re-added): div.wrap.gforms_edit_form.gforms_form_settings_wrap, body.forms_page_gf_entries.auto-fold .gforms_edit_form { top:30px!important; }
Forms | Type: CSS
Prepopulate Gravity Forms with User Info»
Pre-populate form fields with info from user profile for registered, logged in users.
Forms | Type: Other
Remove ‘Add New Form’ from +New Menu»
When you don't want to give users the ability to add a new form from the admin menu.
Custom Admin, Forms | Type: PHP
Remove GF ‘Add New Form’»
Remove 'Add NewForm' from admin bar.
Forms | Type: PHP
Restore Gravity Forms Embed Button on TinyMCE»
Add to your theme functions file. Display on every WYSIWYG field /*****Restore Gravity Forms Embed Button on TinyMCE*********/ add_filter( 'gform_display_add_form_button', '__return_true' ); Display only for pages (I can’t get this…
Forms, TinyMCE | Type: PHP