Archive for the ‘wordpress’ Category

Design refresh: geeky recipe and baking blog

Posted on: June 4th, 2011 by Lara (No Comments)

Semisweetie, my geeky recipe and baking blog needed a refresh once I got an awesome avatar created by Pigeon and Tonic (Etsy). Some changes were made to the grid, and the color scheme was updated to reflect the tones from the picture.

The recipe section also got a revamp, with dividing lines above and below it and a more heavily bolded link style. I was finding that too many commenters were missing the link to the original recipe. Baking blogs typically copy and paste the original recipe into the new post, and give little credit to the original poster – I’m trying to send more traffic to the original recipe so that person gets more credit. But it’s hard to change blog readers’ habits of reading the post for the recipe; they seem to still skip over the link!

Chrome does a weird thing sometimes with @font-face (I’ve only seen it on Windows) where it puts strange characters in for spaces. I’ve had this happen with the @font-face packages from Font Squirrel. To fix it, I’ve just re-uploaded the TTF or OTF file and had it generate a new @font-face package, and the issue goes away. Strange, right? Anyway, this redesign included a regeneration of the two fonts used.

Photographer blog usability

Posted on: May 21st, 2011 by Lara (No Comments)

There are many big usability no-nos that I see daily on photographers’ blogs, including an inaccessible portfolio, difficult navigation, and long, unreadable URLs. Improving these issues will make your blog significantly more user friendly, and help keep new visitors on your site!

Check out the post I contributed to Elizabeth Halford’s blog for details on how to avoid these mistakes: Strategies for Photography Blogging Success

(There are a lot more blog posts coming up that I’ve contributed to other blogs… next week should be very busy!)

Photography Blogging Success – a strategic handbook for photographers

Posted on: May 12th, 2011 by Lara (No Comments)

tips on growing your photography blogSeriously, I couldn’t be more excited about this. My first book!

When Zach Prez (marketing guru for photographers extraordinaire) initially contacted me about doing this book, I nearly jumped for joy. It combines things that I love – helping photographers, and talking about web design and usability. I look at hundreds of photographers’ sites on a regular basis for So You’re EnGAYged, and I see all sorts of issues with them – how do you get in touch with the photographer? What does the blog tell you about the photographer if you’re a prospective client? A photography blog is more than just pretty photos – it’s a way to turn visitors into clients.

Photography Blog Success includes real tips for photographers on how to design your site, post ideas, and tips for traffic growth. Basically, it’s how to turn more blog visitors into clients. Please check it out, and let me know what you think!

Style author rows in WordPress dashboard post list

Posted on: November 14th, 2010 by Lara (No Comments)

As I was designing a multi-author blog, I realized that it would be helpful for the authors to each be able to quickly see which posts were theirs, and highlight which of their posts were still in draft form (so they could go through and finish them).

To do this, I added a new class to each row in the post list, and styled it within the admin CSS file.

First, open up /wp-admin/includes/template.php. Find the section that creates the rows of posts, and edit it to include the below code:

$post_owner = ( get_current_user_id() == $post->post_author ? 'self' : 'other' );
$its_author = ( $post->post_author ); // Add this line to use below
$edit_link = get_edit_post_link( $post->ID );

We defined this new variable so we don’t disrupt the “self” value that $post_owner creates, in case we need to use that as well. Next, you’ll need to call the $its_author variable as part of the table row’s classes.

<tr id='post-<?php echo $post->ID; ?>' class='<?php echo trim( $rowclass . ' author-' . $post_owner . ' author-' . $its_author . ' status-' . $post->post_status ); ?> iedit' valign="top">

Then, find the stylesheet for your admin area. Mine was in /wp-admin/css-colors-fresh.css. Add the styling for your new classes, defining a new class for each of the authors:

.author-2 { background-color: #E5EDEF; }
.author-3 { background-color: #EFE6DF; }
.author-2.status-draft th { background-color: #2E96AA; }
.author-3.status-draft th { background-color: #DA7220; }
.author-4.status-draft th { background-color: #888; }

These will add colors to the rows and the table headers in your admin area, based on author!

Client work: cool things you can do with WordPress

Posted on: October 7th, 2010 by Lara (No Comments)

Two of my most recent clients needed tweaks to their pages that normally content management systems wouldn’t be able to provide. WordPress absolutely saved the day!

Engaging Learning Solutions needed to be able to add and edit the testimonials that show up on (some, but not all) pages of the site. WordPress allowed us to create a “testimonial” custom field for pages; it’s now easy for them to add, edit, reorder and remove testimonials per page!

aumethodists

AU Methodists needed to have a page that listed sermons in chronological order, most recent first. They wanted to show the name of the sermon and its date – but it was important to be able to group the sermons in a way that was scannable and easily findable! Using wp_list_pages, we were able to create a sorted list of sermons that grouped individual sermons underneath their parent pages.

I’m such a WordPress fangirl, I believe that if you can imagine it, WordPress can probably do it!