Skip to content

Instantly share code, notes, and snippets.

@bawright
bawright / custom.js
Created March 13, 2014 13:09
Gravity Forms - Clearing Default Field Values with jQuery
jQuery(document).ready(function() {
jQuery.fn.cleardefault = function() {
return this.focus(function() {
if( this.value == this.defaultValue ) {
this.value = "";
}
}).blur(function() {
if( !this.value.length ) {
this.value = this.defaultValue;
@bawright
bawright / functions.php
Created March 4, 2014 23:39
Import ACF Addon
<?php
//* Do NOT include the opening php tag
//* Import ACF Addon
include_once( CHILD_DIR . '/lib/your-link.php' );
@bawright
bawright / page_contact.php
Created March 4, 2014 23:23
ACF Page Template
<?php
/*
Template Name: Contact
*/
//* Add custom body class of "contact" to the head
add_filter( 'body_class', 'odg_body_class' );
function odg_body_class( $classes ) {
@bawright
bawright / functions.php
Last active August 29, 2015 13:56
Display Featured Image in Post/Page
<?php
//* Do NOT include the opening php tag
add_action ( 'genesis_entry_header', 'odg_featured_image', 15 ); // '5' before title // '15' after title
function odg_featured_image() {
if ( !is_singular( 'page' ) || !has_post_thumbnail() ) // 'post' // 'page' // or blank for both
return;
@bawright
bawright / 0_reuse_code.js
Created February 28, 2014 22:24
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@bawright
bawright / functions.php
Created February 28, 2014 22:22
Genesis - Site Callout w/ button
<?php
//* Do NOT include the opening php tag
//* Hook the SITE CALLOUT WIDGET after the header
add_action( 'genesis_after_header', 'odg_callout' );
function odg_callout() {
printf( '<div %s>', genesis_attr( 'callout' ) );
genesis_structural_wrap( 'callout' );
@bawright
bawright / functions.php
Last active August 29, 2015 13:56
Sticky Menu
<?php
//* Do NOT include the opening php tag
//* Enqueue sticky menu script
add_action( 'wp_enqueue_scripts', 'custom_enqueue_script' );
function custom_enqueue_script() {
wp_enqueue_script( 'sticky-menu', get_stylesheet_directory_uri() . '/js/sticky-menu.js', array( 'jquery' ), '', true );
}
//* Reposition the secondary navigation menu