WooThemes

The WooThemes Blog

All the latest news and announcements, straight from the WooThemes HQ!

Subscribe

Good news

29

by Mark Forrester in New Themes

Today we’ve launched Newsport, a very stylish and sophisticated magazine based theme which can house a wealth of blog posts on a clean newspaper-styled homepage.

Newsport was one of the design concepts that was originially submitted in the theme contest we ran last year October. It was designed by Armono Wibowo – an Indonesian web designer – who finished in the top 10 of the competition. Armono also designed Typebased which is available for free on Woothemes.

It was then coded by PSDtoWordPress and woo-erized (adding the icing on the cake) by Magnus, who built some nifty functionality into it, spread across 4 widgetized modules. You can do all sorts of cool things using the theme option’s panel, like swop the category based top navigation bar for a page based navigation top bar. You can move the logo to the left and have a 468 X 60 ad banner next to it. You also have complete control over what categories appear where and you can paint your theme 11 different colours.

Find out more about the theme or demo it here.

Newsport

0

by Magnus in Magazine / News, Portfolio

Unique Features

These are some of the more unique features that you will find within the theme:

  • Integration of breadcrumb navigation to increase the usability of your website;
  • 4 widgetized areas (left sidebar, footer 1st-3rd column)
  • 5 custom Woo widgets (Flickr, Quote, Search, 125×125 ad, Feeds)
  • 11 great colour schemes to suit your site identity.
  • Newsport has been localized and includes a .po file for easy translations to be made of the theme

Ad space

The theme has a variety of ad space to choose from, and can display both banner ads and adsense code which you input into your option panel. The ad spaces availabe are:

  • 300x250px MPU on the right above categories (option to show it in footer instead)
  • 468x60px in the header besides the logo (logo will be left aligned)
  • 468x60px after every single post
  • 125×125 widget (upto 4 ads) which you can place in any of the 4 widget spaces.
<p>Ad spaces</p> <p>

Ad spaces

Fresh Fox in the house

26

by Adii Rockstar in WooThemes News

It’s incredible to think that we’ve actually managed to contain our excitement and delay the announcement of this news for almost 6 weeks now… I’m actually pretty proud of us, considering how massive this news is. :) So let’s get to the story then…

In the middle of January, we were approached by an extremely big multi-national corporate about possibly acquiring WooThemes. It was only a preliminary meeting for the company to guage our interest in a possible deal, but the figures and details were pretty concrete. Without mentioning any figures, I can however divulge that offer was very lucrative and it made us think twice. BUT – I believe we made the correct decision in declining the offer, based on quite a few business / personal reasons.

The main positive to come out of the meeting though, was the fact that we were obviously moving in a direction, where we have a much more mainstream appeal and audience. So to pursue this, we have decided to add 2 members to our core development team… WooThemers, please meet and say welcome to FRESH01 & Foxinni.

I have known both of these guys for quite some time now and we’ve been working together on custom design / development projects at Radiiate. As of 1 March, they will however (virtually) move over to WooThemes and our Radiiate offices in Cape Town, South Africa will become the semi-WooThemes HQ (because every Rockstar needs an HQ).

What does this mean for you?

Continue Reading »

Win Our Domains!

51

by Adii Rockstar in Contests

It’s competition time around here again… For a while now, I’ve had both wpressd.com & wpmag.com registered with the idea of using them for some kind of WordPress-related (duh!) project. The sad truth is however that I’ve never had enough time to invest in developing these domains into something that justifies the quality of the domain names.

So I’ve decided to give both of these domains away, in the hope that someone else will develop them and do them justice. Obviously the idea is that the projects will both contribute back to the WP community; so we all stand to gain from this! :)

Here’s what you can win:

  1. One of the two domains: wpressd.com or wpmag.com;
  2. Any theme (of your choice) from our collection to get your new domain cracking; and
  3. We’ll even do a little follow-up blog post once you have launched the new site.

And it is so easy to win:

Simply comment below and tell us what you would do with one of these domains, should you own either of them. The best idea will then get the domain and the other freebies that go along with that.

We look forward to your ideas! :)

WP-PostRatings Integration

3

by Magnus in Uncategorized

This tutorial was written by one our awesome Woo Ninjas – Jordan Hatch.

Another useful plugin you may want to install on your site is WP-PostRatings. You can get your visitors to rate your posts on a scale of one to five. It provides a wealth of functions you can use to display the stats around your site.

This tutorial is written for the Gotham News theme, however the main part of the tutorial can be completed in most of our other themes too. In this tutorial, we are going to install the plugin and add it to our single post template, and we’re also going to add a section to our sidebar tabs to show the highest rated posts.

Installing the Plugin

You can grab the plugin from is the WordPress.org plugins repository, but if you have 2.7, search for the plugin name in your admin panel and you can install it from there too. When you’ve installed the plugin, head over to the new “Ratings” section of your WordPress admin panel. Click on “Ratings Options”.

Here you can choose what images you want to use for the ratings, and who can rate the posts. Choose an image you like (or stick with the default), and head over to your template folder. Let’s add it to our posts:

Adding the code

Open up single.php in your theme directory. This is the template used to display a single post on your site. We want to add the ratings below the post content, but above the comments.

Let’s find where the content is in the template file, and add the post ratings function after it. Find:


Now after it, add:


Load up any single post on your site and you’ll see that the post ratings form is displayed below it. However, it looks rather out of place with the rest of our content. It would be nice to align it to the right, and to add some padding to the top. As with the WP-PageNavi plugin, you can add a special CSS file to your theme directory, and it will style the plugin. It will stop it from being overwritten when plugin is upgraded.

Lets create a file called postratings-css.css in our theme directory. The entire post ratings section is enclosed in a ‘div’ with the class name ‘post-ratings’. This means we can add the following CSS to the file we just created, and it will style every occurrance of the post ratings section on the site:

.post-ratings {
	text-align: right;
	padding-top: 10px;
}

.post-ratings-loading {
	display: none;
	text-align: right;
}

The first portion of the CSS file, ‘.post-ratings’, is styling the main section of the post ratings which includes the stars and the statistics. The second portion of the CSS file, ‘.post-ratings-loading’, is simply the “Loading…” indicator which only appears when a rating is submitted.

Save the file and upload it to your website. You will find that the ratings are now on the right hand side of the page. There’s a lot more you could do to the ratings beyond the scope of this tutorial. However, we’re going to look at adding a “Rated Posts” tab to our sidebar now:

Adding a tab

It’s simple and easy to add a new tab to the tabs in the sidebar. Open sidebar.php and take a look at this section:


Each item in the unordered list is a separate link for the tab. The URLs that the links are pointing to are the sections which each tab shows or hides. We are going to add a new list item to the section, for our Rated Posts tab. So after this:

  • Tags
  • add the code for our section:

  • Rated
  • If you upload sidebar.php now, you will see there is another tab to our list. However, clicking on it does nothing, as we haven’t added our list yet.

    The plugin includes a useful function which will show us the highest rated posts on the site, and we can easily add them to our sidebar. Find this line in the sidebar.php file:

    This is the code for the “Tags” section. Below it, add the following:

    This code adds a new section which corresponds to the tab we added earlier. The function get_highest_rated is one which the plugin includes, and we can specify whether we want to show posts or pages, only to show a post after X number of votes, and also the number of posts to show in the tab – for now it’s set at 5 posts, but you can change that if you like.

    Upload sidebar.php and check out your site. If you’ve done everything correctly, there will now be an extra tab called “Rated” which shows the highest rated posts along with a link to each of them.

    As we’ve demonstrated, it’s easy to add new tabs to your sidebar, and there are tons of useful plugins out there which can add things such as post ratings, pagination and breadcrumbs.

    Feedback is appreciated in the comments, along with suggestions for future tutorials. (:

    WooTube haz homepage!

    14

    by Magnus in Development

    When we first designed WooTube, we only intended it to be a simple video browser theme. Some complained that the homepage looked like a single post, probably because that is exactly what it was :) WooTube has been out for nearly a month, and it seems like it has been well received, even though there isn’t any fancy homepage layout for it.

    But now there is! A few hours of coding, and voila, an optional homepage layout, which you can turn on from within your options panel. This will add post boxes on the front page, and you have the option of showing the latest video, or disabling it and getting that gallery feel on the theme.

    This theme can therefore easily be used as a normal blog/gallery/portfolio or whatever you can imagine it to be. There is no need to add videos to your posts, so you could use it to show of your design work, or run a CSS gallery.

    If you already own WooTube and want to know how to upgrade, you should study the changelog.txt and first backup your current theme if you have made any changes to the files.

    Let us know your thoughts on the upgrade by checkint out the demo, and if there are any more tweaks that we should add.

    The irresistibly good, new free theme

    86

    by Adii Rockstar in New Themes

    An irresistibly good free theme

    An irresistibly good free theme

    We know February has been a bit slower compared to the previous 2 / 3 months, but it must be as a result of the extreme heat here in South Africa (where I’m based) and the icy coldness over there in Norway (which Magnus calls home). So instead of focussing on some of our upcoming club themes, we’ve been in a giving mood…

    Along with the free icon set we released last week, we’d like to announce the release of our brand-new free theme: Irresistible, which now becomes our 5th free theme release. The theme was designed by Izuddin Helmi and was a Top 10 winner in the WooContest of last year.

    Irresistible (demo here) is a personal blog theme, with a little bit of a multimedia focus. The idea was to great a visually-rich design that accomodate your written content, lifestream and all of your multimedia content as well. Nothing flashy; just a cool personal blog theme, with the standard WooThemes backend goodness thrown in there as well.

    So enjoy this free release and if you’re impressed with the quality of the theme, consider buying one of our premium themes.

    Irresistible

    0

    by Adii Rockstar in Free, Personal Blog

    Theme Features

    These are some of the features that you will find within the theme:

    • Use as a standard blog or use the customized homepage layout, as shown in our demo, that you can activate via our options panel
    • As always, Irresistible is built on our very popular backend, which includes someĀ  non-standard, non-average customisation options;
    • Integrated banner ad management;
    • Seamlessly integrated video player;
    • Widgetized sidebar, with some Irrestible-specific custom widgets to allow you full control of what happens in your sidebar; and
    • 9 different colour schemes to choose from…

    The Cushy Definition. Competition.

    8

    by Adii Rockstar in Contests

    So yesterday I decided to launch a little fun promo competition, whereby my Twitter followers could suggest a definition of “Cushy” and get the chance to win one of free copies of the Cushy theme (also released yesterday). I must admit that I didn’t expect so many people to participate and I’ve had a really great laugh as a result of some of the most hilarious / ridiculous tweets I’ve *ever* seen. So here’s a run-down of all tweets that came through yesterday…

    I have marked the 3 entrants, who’ll be getting a free copy of Cushy in bold. If you’re one of the lucky one’s, please e-mail us your full name, e-mail addy and desired username + password to info@woothemes.com and we’ll hook you up.

    Continue Reading »

    New theme with a weird name

    22

    by Adii Rockstar in New Themes

    Cushy by Liam McKay

    Cushy by Liam McKay

    I know, I know… The title isn’t overly original or indicative and probably doesn’t make any sense from a marketing perspective, but Magnus is away skiing in Austria and Mark is planning his wedding for this Saturday, which leaves me to do everything… :)

    Cushy is the newest addition to our already popular range of business- / CMS-type themes, and we’re sure you’ll love the diversity that this latest design (by Liam McKay) brings to our ever-expanding collection of themes.

    The design itself is very different to our other business themes (such as VibrantCMS & Over Easy), which sports a much cleaner look. Cushy takes a more vibrant and textured approach, without losing any of its sophistication. Also – with a variety of different page templates and layouts for different content sections, the theme seems to intrigue and surprise around every corner and click.

    From a functionality perspective, Cushy has everything a business / corporate website would require, without being bloated. A custom homepage will allow you to stand out from the crowd, whilst a widgetized sidebar and footer adds to your options in terms of customizing the base theme. The product / services tabber on the homepage also displays some of your most important sales information effectively without taking up unnecessary screen real estate. Oh – and did you notice that sexy drop down menu’s for the main navigation!? :)

    We hope that all of the Woo fanboys and -girls love our latest release; and maybe you’ll even consider signing up to our WooThemes Club, which now sports 24 themes! Before you leave, read the in-depth details of Cushy or check out the demo right away.

    Oh… Wanted to let you know… I’m doing a little promo on Twitter a little later, where I’ll give away a few free copies of Cushy. So follow @adii on Twitter to get the scoop!

    Cushy

    0

    by Adii Rockstar in Business

    Unique Features

    These are some of the more unique features that you will find within the theme:

    • Custom, widgetized homepage to market your products and services in any way that you want;
    • jQuery tabber on the homepage to display your products / services effectively;
    • Integration of breadcrumb navigation to increase the usability of your website;
    • A completely widgetized sidebar, along with a few (Cushy-specific) widgets that you can use;
    • Trendy drop-down menu’s for your main navigation; and
    • 5 incredible colour schemes to suit your brand identity.