Found 1075 bookmarks
Newest
Use Merge Tags as Dynamic Population Parameters - Gravity Wiz
Use Merge Tags as Dynamic Population Parameters - Gravity Wiz
Complex fields (fields with more than one input like the Name field, Checkbox fields, Address fields, etc) do not support the default value option. But they do support dynamic population. This snippet enables the ability to use merge tags as dynamic population parameters, allowing you to specify default values for complex fields. How do I […]
·gravitywiz.com·
Use Merge Tags as Dynamic Population Parameters - Gravity Wiz
Override Image Captions
Override Image Captions
You can override image captions in FooGallery by following these steps: First, you will either need to edit your theme's functions.php or install a
·fooplugins.helpscoutdocs.com·
Override Image Captions
Gravity Forms Field Mapping
Gravity Forms Field Mapping
Traditional field mapping with Gravity Forms can be a pain. In this post I offer an approach to field mapping that is more resilient to form configuration changes, making your custom integrations more robust.
·timjensen.us·
Gravity Forms Field Mapping
Add Event Categories as CSS classes to Event Posts in Modern Tribe | WP Beaches
Add Event Categories as CSS classes to Event Posts in Modern Tribe | WP Beaches
Event Categories are not added as CSS classes to individual Event Posts in Modern Tribes Event Plugin for WordPress however you can use the body_class filter to add them in. add_filter( 'body_class', 'cp_event_taxonomy_in_body_class' ); // https://theeventscalendar.com/support/forums/topic/add-category-name-as-body_class/ // Add event categories terms to body class of event posts function cp_event_taxonomy_in_body_class( $classes ){ global $wp_query; $event_id =…
·wpbeaches.com·
Add Event Categories as CSS classes to Event Posts in Modern Tribe | WP Beaches
Enable Honeypot for all new GravityForms forms
Enable Honeypot for all new GravityForms forms
add_action( 'gform_after_save_form', 'leaven_always_enable_honeypot', 10, 2 ); /** * Always enable Gravity Forms' anti-spam honeypot. * @param $form_meta * @param $is_new */ function leaven_always_enable_honeypot( $form_meta, $is_new ) { if ( ! $is_new ) { return; } $form_meta['enableHoneypot'] = true; GFAPI::update_form( $form_meta ); }
·genesis.community·
Enable Honeypot for all new GravityForms forms