Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Gets Gravity Forms via form title.
*
* @access public
* @param string $title (default: null) - Form title to search for
* @param bool $return_form (default: false) - Return form object or form ID
* @return array - Array of form IDs or form objects (based on $return_form value)
*/
<?php
/**
* Gravity Forms Easy Form Population
*
* Populate form fields with values from a previous form entry.
*
* @version 1.0
* @author Travis Lopes <tl@travislop.es>
* @license GPL-2.0+
* @link http://travislop.es/
@travislopes
travislopes / GF_Easy_Form_Population.php
Created December 11, 2015 02:32
Populate form fields with values from a previous form entry
<?php
/**
* Gravity Forms Easy Form Population
*
* Populate form fields with values from a previous form entry.
*
* @version 1.0
* @author Travis Lopes <tl@travislop.es>
* @license GPL-2.0+
* @link http://travislop.es/
<?php
add_action( 'gform_enqueue_scripts_10', 'enqueue_dropdown_script', 10, 2 );
function enqueue_dropdown_script( $form, $is_ajax ) {
wp_register_script( 'jquery-dropdown', 'js/jquery.dropdown.js', array( 'jquery' ) );
wp_enqueue_script( 'gform-jquery-dropdown', 'js/gravityforms.dropdown.js', array( 'jquery', 'jquery-dropdown' ) );
}
( function( $ ) {
$( '#input_10_6' ).dropdown();
} )( jQuery );
@travislopes
travislopes / ArchiveMenuFix.php
Last active August 29, 2015 14:00
WordPress filter for setting the proper CSS classes on post type archive menu items
<?php
/*
* Archive page in menu fix
* (requires menu item URL to be "/slug/")
*/
add_filter('nav_menu_css_class', function($classes, $item) {
global $wp_query;
// Loop through all the post types
foreach(get_post_types(null, 'objects') as $name => $post_type) {