Found 1030 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
Codeable - How to import JSON into WordPress
Codeable - How to import JSON into WordPress
WordPress is going through somewhat a transition lately with JSON REST API increasingly becoming a thing. And a good thing at that, because it's finally catching up with the rest of data-driven, JSON-powered world. What is JSON If you're unfamiliar with JSON (abbreviation for JavaScript Object Notation), simply put it's a standard format in which... [Continue Reading]
·codeable.io·
Codeable - How to import JSON into WordPress
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords
Recently, I found myself setting up a new WordPress site, but with an enormous legacy of content that needed to be uploaded in the form of posts and custom post types. We had about 1500 posts just in one category and a few hundred posts under different custom post types like ‘videos’ and ‘events’. To…
·briancoords.com·
WordPress Tip: Quickly Import Posts via Google Sheets and JSON | Brian Coords