HousingWire.com redesign. Launched January 1, 2010.
{ 0 comments }
Web Producer
From the category archives:
Website: http://www.visitphilly.com/ (beta)
Designed by Happy Cog
Home Page
What they did good:
Simple, clean and colorful. That is how I would describe the redesign of the visitphilly.com website. I really like the vivid images that are used on the background as they are colorful and grab my attention. Many designers are afraid of taking up a lot of space before the main content but the designers at Happy Cog showed a great example of crushing that myth and doing it in style.
To improve:
The Featured Listings on the home page look great but the images and the titles of the sections should also be clickable. Right now the only way to get to that article is to click on the small More link.
Great Job by everyone at Happy Cog
{ 0 comments }
I have read differing views on which permalink structure is best for SEO. I would like to know what you think and why? Please vote now and comment if necessary. Thanks
{ 0 comments }
There will be times when you need to not show a category on a certain page. You can either code this manually or use a plugin. Here are some options:
Manually Excluding a Category
Step 1: Go to your WordPress Dashboard
Step 2: Expand the Posts dropdown from the left sidebar
Step 3: Click on the Categories link
Step 4: Click the Category you want to exclude
Step 4: In you browser address bar you will see a url that contains your Category ID. It looks something like this:
<br/>http://www.yourwebsite.com/wp-admin/categories.php?action=edit&cat_ID=5<br/>
The Category ID is 5 at the end of the url (cat_ID=5).
Step 5: Open the Functions.php file for your Theme
Step 6: Past the following code before the closing PHP tage ?> and make sure you change -xx in the code below to your category id
function exclude_category($query) {
if ( $query->is_home ) {
$query->set('cat', '-xx');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
Try it out. I will be updating this post with other examples of excluding categories and plugins you can use.
{ 0 comments }
Everytime I try to update WordPress from the WP Dashboard I keep getting the message that it is downloading the update. The update never gets downloaded though. So I decided to update WP manually. Don’t be afraid to try this out. As long as you have backed up your files and your database you can always revert back without any problems.
Here are the steps:
That wasn’t too hard was it? Now you can enjoy the latest release of WordPress.
{ 0 comments }
Recently I designed some wireframes for a site I am building. The wireframes were designed using Adobe Illustrator. Using the Artboard Tool I was able to layout all the pages I needed to build. The wireframes consisted of 12 pages. After the wireframes were complete I realized that I needed to add another page between page 3 and 4. Currently if you add a new page using the Artboard Tool it will only add a new page at the end, so I ended up with a page 13. After browsing a few forums I ended up at the Adobe Illustrator Google Groups forum. There Jean-Claude Tremblay explained this solution:

Here is the solution:
Works like a charm. Try it out for yourself it is a great time-saver.
{ 7 comments }