thoughts

Stuff I notice. Not exactly a blog.

magic wand above a pile of documents
 

One brief to rule them all

An effective way to make sure meeting decisions are productive: Have a short creative brief that is read at the start of every project meeting.

read more

nice little bit to fix tag archive

I was having a problem with tag archive not pulling from custom post types, or from pages (I added a plugin to add tags to pages). After much searching and minor hair loss, I found this: function post_type_tags_fix($request) { if ( isset($request[‘tag’]) && !isset($request[‘post_type’]) ) $request[‘post_type’] = ‘any’; return $request; } add_filter(‘request’, ‘post_type_tags_fix’); from here: […]

read more

The art of logo design

“A logo is a stand-in for who you are.” This 6-minute video from PBS is an excellent peek at what makes a good logo.

read more