Blog

WordCamp Seattle 2014 Speaker Program Custom Grid and Advanced Search

This is the custom grid to display the list of speakers as presented in WordCamp Seattle 2014. It focuses on the speaker program developed for the Bellevue Breakfast Rotary Club. The other posts in this series are: WordCamp Seattle 2014 Custom Prev and Next Post Filters WordCamp Seattle 2014 Speaker Program Dashboard Filters To achieveWordCamp Seattle 2014 Speaker Program Custom Grid and Advanced Search See the full project…

WordCamp Seattle 2014 Speaker Program Dashboard Filters

This is the custom dashboard display the list of speakers as presented in WordCamp Seattle 2014. It focuses on the speaker program developed for the Bellevue Breakfast Rotary Club. Other posts in this series are: WordCamp Seattle 2014 Custom Prev and Next Post Filters WordCamp Seattle 2014 Speaker Program Custom Grid and Advanced Search ThisWordCamp Seattle 2014 Speaker Program Dashboard Filters See the full project…

WordCamp Seattle 2014 Custom Prev and Next Post Filters

This is the code to create the previous and next post links for the Speaker Program demo for my WordCamp Seattle presentation. It focuses on the speaker program developed for the Bellevue Breakfast Rotary Club. Other posts in this series are: WordCamp Seattle 2014 Speaker Program Dashboard Filters WordCamp Seattle 2014 Speaker Program Custom GridWordCamp Seattle 2014 Custom Prev and Next Post Filters See the full project…

WordCamp Seattle

I will be speaking at WordCamp Seattle. My topic is “Advanced Custom Fields – Beyond the Basics” and is part of  the themer ligntening talks (approx 10 minutes each). Please see: http://2014.seattle.wordcamp.org/about/sessions/.

Using the jQuery Progress Bar in your WordPress Site

I recently completed a small project to add a few enhancements to an older WordPress site. The site, Pro Golf Fundraising, promotes fundraising events with Golf outings. One of the project goals, was to include some type of widget or animation that indicates the money raised over the years via golf fundraising events After updatingUsing the jQuery Progress Bar in your WordPress Site See the full project…

Delegate Custom Events for Datatables

I often use the jQuery datatables plugin when I want a dynamic table that includes sorting as well as next and previous functionality. I mistakenly thought I could just tie my hover and click events to each row in the table as follows: $(’#speaker-archive-table tbody tr’).hover(this.hoverRow, this.hoverRow); $(’#speaker-archive-table tbody tr’).on(’click’, this.selectRow); $(‘#speaker-archive-table tbody tr’).hover(this.hoverRow, this.hoverRow);Delegate Custom Events for Datatables See the full project…