All resources offered by this website are collected through the internet and exchanged between peers for personal study. Все ресурсы, предлагаемые на этом сайте, собранные через Интернет и обмен между коллегами для личного исследования.
Easy Share Here..

Archive for 'Ported Themes'

After a long break between new free WordPress theme releases, we finally have a new one! This one is another designed by CSS Heaven, ported from a free CSS template of the same name.

It has several standard features including WP 3.0 navigation menu support, threaded comments, post thumbnails, and widget-readiness. We’ll get to those features later.

SilverBlog screenshot

Download

WordPress 3.0 Menu Support

There is a WP 3.0 menu placed in the top right portion of the theme (above the search box). You can also use them in any widgetized area.

silverblog menu

Widgetized Stuff

There are widgetized areas on the sidebar, 404 page, as well as the “Featured” box on the main index template.

silverblog featured

You can override the Featured box by using the custom “Featured Content” widget in the Featured widget area. You’ll need to input a heading, text, and a full image URL.

silverbog featured widget

Post Thumbnails

There is post thumbnail support on individual post and page templates. There are a couple included in the /images/ directory. Here is a sample of one and the placement (right above the content).

silverblog post thumbnail

They are set not to exceed 609 pixels in width. Height is up to you, although you may not want to make it too high as it will push the content too far down the page.

License

GPL. You can do pretty much whatever you want with it, modify, redistribute, whatever (except release it under another incompatible license).

Conclusion

Hope you all like the theme. Let me know what you think in the comments.

And of course, thanks again to Roshan of CSS Heaven for designing another great template!

Related posts:

  1. Jungleland – Free WordPress Theme
  2. Bamboo – Free WordPress Theme
  3. RS10 – Free WordPress Theme

Today’s free WordPress theme is designed by Roshan of CSSHeaven.org (you might know him from his RamblingSoul themes). I ported the static template to WordPress and packed it with WordPress 3.0-specific features, including custom menus, headers, and backgrounds. More on that below.

Green Tea screenshot

Download


WordPress 3.0 Menus

As stated above, this theme includes WordPress 3.0 menu support which means you have very flexible control over what links show up in your header menu. If you don’t set up a menu, it will default back to a list of WordPress pages.

Green Tea Custom Menu

For further reading on implementing the WordPress 3.0 menu feature into your own themes, I found these links really helpful:

Custom Header

If you want to get rid of the red header image displayed directly below the nav menu, the custom header feature is for you. You’ll need an image 980 pixels wide and 170 pixels high to replace it. If it’s smaller than that, the CSS is coded to position the background image in the center of the div.

Green Tea Custom Header

For more information on implementing this in your own theme, I found the add_custom_image_header page on the WordPress codex very useful, although I modified it a bit so it doesn’t load styles in the header, just an inline background image declaration on the “header” div.

Of course, feel free to check out the code in header.php and functions.php to see how exactly I did it.

Custom Background

If you want to customize the background image and get rid of the greenish background image currently used, use this feature.

Green Tea Custom Background

This is by far the easiest feature to implement in a theme, thanks to WP Engineer for the one line code you need to add to your theme’s functions.php file.

add_custom_background();

You also need a wp_head() hook in your header so the internal stylesheet that handles the custom background styles can be embedded.

Custom Thumbnails

As you can see on index/archive/search pages, the posts are laid out in a gallery format. For this, I decided to use the built-in WordPress thumbnail system. It will automatically crunch the images to 270×140.

Thanks to Mark Jaquith’s tutorial for information on integrating this feature into the theme.

Widgets

Like almost all the other themes here, Green Tea is widget ready. The widgetized areas are the sidebar, left footer, right footer, and 404 page.

Conclusion

This should probably go without saying, but you’re going to need to be running WordPress 3.0 for this theme to not spit out a bunch of errors. It’s not backwards compatible, and I did this on purpose to help force people to upgrade to the latest version (which you should be doing anyway).

The reason I chose this particular template because it seemed to have as many elements that I could use to integrate WordPress 3.0 specific features. While I wouldn’t necessarily use these features on my own sites, I can see the value if you’re developing themes for public release or clients.

WordPress 3.0 menu integration is pretty much a must for those, as it makes things so much easier for users in customizing links in menus versus the old way: page lists, category lists, or hard-coded menus. Depending on the design, custom headers would be nice and to some extent, maybe even custom backgrounds (although I’m not a huge fan of this one).

Thanks to Max Luzuriaga for the suggestion of the Green Tea name which I got on Twitter.

Let me know what you think of the theme in the comments, I’d love to hear your feedback!

License: Everything is licensed under the GPL, the original template (including CSS and artwork) and the WordPress portion.

Related posts:

  1. WP Clean & Green – Free WordPress Theme
  2. RS16 – Free WordPress Theme
  3. RS11 – Free WordPress Theme

Got a couple requests today to port this template by Mohd Huzairy to WordPress, so I did. As you can see, it’s super simple with a very minimalistic design. In the WordPress theme, I added a few features like a widgetized sidebar and threaded comments.

The Arialist screenshot

Download

Related posts:

  1. Simple Gray – Free WordPress Theme
  2. RS11 – Free WordPress Theme
  3. Jungleland – Free WordPress Theme

Today we have another awesome free WordPress theme, which I ported from a Styleshout template. It’s more or less a pretty standard blog design with a bunch of widgetized areas (mostly in the footer), threaded comments support, and post thumbnail integration, among other things.

Cool Blue screenshot

Download

Let’s get into the features in more detail.

FlickrRSS Support

If you have the FlickrRSS plugin installed, you can configure it to show your various Flickr photos. This will show up in your footer (above all the normal widgets).

Cool Blue Flickr

This plugin is optional and will not break anything if you don’t want Flickr photos to show up.

Post Thumbnail Support

Like the SongSpace theme, this theme makes use of WordPress’ built-in post-thumbnail feature.

post thumbnail

Since post thumbnails were introduced in 2.9, you’ll need to at least WordPress 2.9 to run this theme.

Archives Template

Like other Styleshout ported themes including Jungleland and FreshPick, Cool Blue has an archive template that differs from the usual index template.

Cool Blue Archives

I used the same template on the search results pages too.

Social Bookmarking

On single post pages I integrated the social bookmarking section available in the original Styleshout template.

Cool Blue Bookmarks

Thanks go to Jeff Star of PerishablePress for the fully valid, SEO-friendly social media links for WordPress and also to the Sociable plugin (for LinkedIn and NewsVine).

To enable the e-mail icon, you’ll need to install the WP Email plugin by Lester Chan.

Opacity Hover Effect on Social Icons

I had some feedback from a beta tester, Muhammad Haris, who suggested that the icons would look good if they were set to 80% opacity by default and 100% on hover.

While I don’t like to mess too much with ported theme code, it’s actually pretty simple if you really want to. Just add the following lines in your style.css file:

.share-box a img{
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
.share-box a:hover img{
	filter:alpha(opacity=100);
	-moz-opacity:1;
	-khtml-opacity: 1;
	opacity: 1;
}

If a browser doesn’t support the opacity feature, don’t worry about it, the images will just show up as normal. Of course you can change all the 80’s and .8’s in the first part to whatever percentage you see fit.

Threaded Comments

The original template had a threaded comments design built-in, so I integrated it with a custom callback (plus a few CSS changes).

Cool Blue Comments

Widgetized Stuff

The Cool Blue WordPress theme has six widgetized areas. One in the sidebar, four in the footer (for each column), and one on the 404 template.

Cool Blue Footer

Pictured above is the fat, fully widgetized footer included in the Cool Blue theme.

To handle the “Updates” part, I coded in a custom widget to input your feed URL, Facebook URL, Twitter URL, and E-mail subscription URL. I’d recommend you place it in the “Footer One” widget area.

Cool Blue Social Widget

Thanks to WP Engineer for the code.

No Theme Options Page

That’s right, this is a feature. Why? Because I really couldn’t think of a good reason to include one that couldn’t be better accomplished by a separate plugin. Expect a follow up (opinion) post regarding this soon.

Conclusion

The Styleshout ports are easily the most downloaded themes here, although my download counter has been busted ever since I upgraded to 2.8 so I’m not 100% sure if anyone has overtaken them. I doubt it.

Hope you all like the theme, let me know what you think in the comments.

Related posts:

  1. Keep It Simple – Free WordPress Theme
  2. Blue World – Free WordPress Theme
  3. TechJunkie – Free WordPress Theme

Today we have a free WordPress theme designed by Brad of DemusDesign. I took the coded design and ported it to WordPress. This is the first theme here which makes use of the_post_thumbnail feature to handle thumbnails and needs at least WordPress 2.9 to function properly. Other features include several widgetized areas, including a widgetized footer.

SongSpace screenshot

Download

And now onto the features in more detail…

Widgetized Areas

Included in the theme are five widgetized areas.

  • One for the sidebar
  • Three for each footer column
  • One on the 404 template

Songspace Widgets

Color Schemes

Included in the original template are several color scheme stylesheets: blue, brown, green, orange, pink, purple, red, yellow. In the WordPress theme, I decided to integrate these with a very simple theme options page dropdown.

SongSpace Theme Options

The green one is pictured in all the screenshots. If you don’t set anything, the default color scheme is blue.

Post Thumbnails

Instead of using TimThumb like I usually do to handle resizing post thumbnails, I decided to integrate a feature that was made available to themes with the WordPress 2.9 release called the_post_thumbnail.

Simply upload an image like you usually do, select it as your post thumbnail, and it will be displayed on the site. No messing around with custom write panels any more.

songspace-thumbnail

Keep in mind this is my first attempt at integrating post thumbnails into a theme with the_post_thumbnail, so it may take some experimenting to get them just right.

Further the_post_thumbnail() resources:

Conclusion

Hope you all like this WordPress theme. Thanks once again to Brad of DemusDesign for the great template.

Let me know what you think in the comments. Would be especially interested to hear your feedback regarding the_post_thumbnail in comparison to something like TimThumb and using custom fields.

Related posts:

  1. Photabulous – Free WordPress Theme
  2. Newsworthy – Free WordPress Theme
  3. Blue Green – Free WordPress Theme

This WordPress theme is ported from the free CSS template of the same name by Rambling Soul. It’s a dark blog theme with a custom homepage template. It supports widgets and threaded comments. There are a few other features in the theme which will be gone over below.

RS17 screenshot

Download

Custom Homepage Template

Included in the theme is a custom page template designed to be used for your homepage. It includes the following:

  • Gallery like post layout with optional custom thumbnails
  • Widgetized areas above and below the post area

To use this page template as your homepage, you’ll need to do the following:

  • Make a blank page called “Home” (or whatever else you want to call your homepage, doesn’t matter) and select the “Home Page Template”
  • Make a blank page called “Blog” (or whatever else you want to call your blog, doesn’t matter)
  • Go to Settings → Reading and select “Home” as your Front page, and “Blog” as your Posts page.

I used a similar technique in the Simply Minimal WordPress theme so you could have a clearly separated Home and Blog page regardless of your permalink structure.

Remember, you you don’t need a blog on your front page.

If you don’t want to use the custom homepage template, don’t worry about it. You’ll have a regular blog style layout as your homepage.

Custom Homepage Post Images

As mentioned above, there are optional custom post images you can use on the homepage template. They should be sized 185×100 (185 pixels wide, 100 pixels high).

I opted not to use something like TimThumb due to hosting compatibility issues that some hosts have. You’ll hopefully be able to easily crop the image yourself within the WordPress admin panel.

After cropping, simply input the full URL in the custom write panel on the posts page.

RS17 Post Settings

And save/publish, the custom homepage image will now appear on the post you selected.

Widgets

There are four widgetized areas in this theme.

  • Two on the homepage template (top and bottom)
  • Sidebar
  • 404

RS17 Widgets

The 404 template widget area isn’t pictured.

Theme Options

Included is a simple theme options page to control which pages are excluded on header and footer menus.

Depending on the length of your blog title, you may not have a lot of room for links in the header, so just input a comma separated list of page IDs you wish you exclude.

RS17 Theme Options

To find your page ID, go to the manage pages menu and hover over a link to edit a page. You should see something like com/wp-admin/page.php?action=edit&post=XX in your browser’s status bar, where “XX” is your page ID.

Optional Plugins

This theme has support for the following plugins.

  • WP-PageNavi – For numbered pagination on index, archive, and search pages. Otherwise you get boring “Previous” and “Next” links.
  • WP125 – For 125×125 ad management, will replace the static 125×125 ad links in the current template, or you can use widgets.
  • Yoast Breadcrumbs – Adds breadcrumb navigation directly below the header. Highly recommended for SEO and user navigation purposes.

Remember, these are all optional plugins you can install for added functionality. You don’t need to add any integration code since I already included it with the theme, and the theme won’t break if you don’t have these plugins installed.

Conclusion

Hope you all like the theme, let me know what you think of it in the comments.

And of course, thanks once again to Roshan of Rambling Soul for the great template. You can check out all his other designs ported to WordPress on this page.

Related posts:

  1. Splashtastic – Free WordPress Theme
  2. RedPepper – Free WordPress Theme
  3. RS11 – Free WordPress Theme

Finally, presenting the winner of theme battle #3. Tasty Showcase was a template designed by Brad of DemusDesign, who also coded it in XHTML/CSS/JS. I then took the coded template and ported it to WordPress. It has a ton of widgetized areas, including widgetized footers (plural).

Tasty Showcase screenshot

Download

Read on to see the features, including how to use the slider, in more detail…

The Slider

Displayed on the homepage, this Karmic Flow powered slider will display your four latest posts with a custom image should you choose.

Once you have a custom image sized 653×367 (653 pixels wide, 367 pixels high) simply input the absolute URL to the image in the built-in custom write panel.

Tasty Showcase Post Settings

If you don’t have an image, the theme will automatically use one of the placeholder images (depending on which slot it is) if you don’t specify one yourself. That means even if you don’t have any images, there will still be a different picture for each one.

Widgetized Areas

This theme is chock-full of widgetized areas, 14 to be exact. Here’s where they are, and what they do:

  • Sidebar – Four areas, one full width above, two half widths, and one full width below
  • Footer – Five areas, one for each column
  • Home Footer – Four areas, one for each column
  • 404 Template – One area, so you can customize your 404 pages

Keep in mind the “Home Footer” areas are only used on the homepage (where the slider is). The rest of the footer widget areas are controlled through the “Footer” ones, and affect every other page on the site besides the homepage.

Tasty Showcase Widgets

The above diagram shows all the “Sidebar” and “Footer” widget areas. Not pictured are the “Home Footer” areas (basically the same place as the regular footer, except on the homepage) and the 404 template widget areas.

Conclusion

I bet you all forgot about theme battles, didn’t you? I know it was a few months between the conclusion of the voting and the release of the winning theme (this one) but better late than never.

Brad from DemusDesign was kind enough to code this one into XHTML/CSS and integrated the Javascript for the slider even though I usually code the winning theme battle themes myself. This time I just did the WordPress portion. You can get the static (non-WordPress) version on his site.

I’d also like to thank Cristian Antohe of Cozmos Labs for spotting a bug on the theme via Twitter. Also a special thanks to Omar Corrales of Slimmity who tested the theme himself and provided some good feedback, including several bug fixes before the release.

Anyway, since the time RS16 was released, I got the forums back online (with a matching bbPress theme) so if you have any support questions, they go there.

Let me know what you think of the theme in the comments, I’d really love to hear your feedback.

Related posts:

  1. Jungleland – Free WordPress Theme
  2. Newsworthy – Free WordPress Theme
  3. RS11 – Free WordPress Theme

It’s been a while since our last free WordPress theme. This one is designed by Roshan from Rambling Soul, who has recently returned to designing free templates after a long absence. This theme has a number of interesting features, which will be gone over below.

RS16 screenshot

Download

Read on to check out the features in more detail…

Image-Based Page Navigation

Roshan designed this template with a set of button-style image links for the page navigation. I wanted to make sure there was an easy way to choose which image you wanted to use on a page-by-page basis, so I coded in a custom write panel to make it easier.

RS16 Button Image

  • home – home
  • works – works
  • blog – blog
  • downloads – downloads
  • blog – blog

Simply type in the name of the corresponding image listed on the right, on the write menu on each page. If nothing is specified, the “works” image will be used (which is why there’s a paintbrush on every other page besides About).

The code used to display the image links through custom fields was heavily modified from the WordPress Menu Tricks article at ThemeShaper, take a look at the functions.php file in the theme if you’re curious.

Widgetized Areas

There are only two widgetized areas in this entire theme. One widgetized area is on the 404 template, in case you want to customize your 404 page from the WordPress admin.

The second is called “Homepage Top” and located on top of the index page, so you can customize the information displayed there.

RS16 Homepage Top

WP-PageNavi Integration

This theme is integrated with the WP-PageNavi plugin. Simply install it to get super cool numbered pagination on your index, archive, and search pages. Otherwise you’ll get normal previous/next pagination links.

RS16 PageNavi

Twitter Integration

Your latest tweet is displayed at the bottom of each page in the RS16 theme after you input your Twitter username in your user profile. This Twitter input box located at the bottom of: Users → Your Profile.

RS16 Twitter Input

Thanks to Justin Tadlock for the code to add and use custom user profile fields.

Multiple Background Images

Roshan included four different post background images with different colors. Adding onto the custom write panel made for the page navigation links is a way to define an alternate background color to posts and pages, if you choose.

RS16 Backgrounds

The different color choices are: green, gray, brown, pink. If no color is defined, the default color is green.

RS16 Background Colors

Thanks to WPRecipes for the code on how to get custom fields outside the loop.

Conclusion

Hope you all like the theme, despite the unconventional page navigation. It’s worth noting that there is another set of text-based page navigation located in the footer. If you want more Rambling Soul templates which I’ve ported, check out this tag page for the full collection.

Not many people have noticed, but the support forums have been closed ever since the new design was launched. Not only so I can create a matching bbPress theme for it, but also wanted to set aside some time to clean up all the spam accounts which are cluttering up the database. Hardly anyone uses it anyway, so hopefully the few that do can be patient while I set that up again.

With that said, feel free to let me know what you think of the theme in the comments, including support-related questions if you notice anything that’s off.

Related posts:

  1. Bamboo – Free WordPress Theme
  2. Internet Hosting – Free WordPress Theme
  3. Jungleland – Free WordPress Theme

Today we have an awesome news theme, originally designed by DemusDesign, which I then ported to WordPress. This theme requires at least WordPress 2.8 to function properly, and includes some standard features such as threaded comments and comment pagination. There are also over 10 widget-ready areas, including a widgetized footer, plus a custom widget for ad management.

Newsworthy screenshot
Live Demo | Download

And now onto the features in more detail…

Post Images

Featured images and thumbnails for posts are used in a number of places in this theme, including the main index page, single post page, archives, and search results. Thanks once again to TimThumb, you only need to upload one image to use in all of these places.

Newsworthy Post Settings

Once you’ve uploaded a 610×281 image, copy the full path to the image and paste it in the custom write panel. This image will automatically be resized and used in the multiple areas mentioned above.

Widgets

There are over ten different widget areas included in this theme. They are color coded in the screenshot below, click it to enlarge the image.

Newsworthy Widgets

The following are descriptions of the widget-ready areas pictured above.

Sidebar

Tabber – That’s right, there’s a widget-ready tabber. It’s ideal for text widgets, tag clouds, and lists. There probably isn’t room for more than four or five tabs.

Sidebar Ads – This area, as you might expect, is designed for 125×125 advertisements. I’ve also included a very basic 125×125 ad widget which you can use to place the ads in your sidebar.

Newsworthy Ads

This widget is not limited to the “Sidebar Ads” widget, but it’s probably the best place to put it.

Sidebar Left and Sidebar Right – These are displayed directly below the “Sidebar Ads” area. It’s ideal for lists of categories, archives, etc.

Sidebar Bottom – This area is displayed directly below “Sidebar Left” and “Sidebar Right” and there’s nothing there displayed by default. It might be ideal for text widgets or a list of recent posts.

Home Left and Home Right – These areas are displayed on the homepage. By default there is nothing displayed. It’s best used with text widgets.

Footer – There are five different widget areas in the footer, with “Footer One” being the one on the far left and “Footer Five” on the far right.

Single Middle (not pictured) – This is displayed only on the single post pages, directly below the “Share This” box with the links to share the post on Twitter, etc.

Conclusion

Those who follow me on Twitter know I’ve been tweeting about this upcoming theme for a while now, so thanks for your patience while I got everything ready. I think themes like this prove that free WordPress themes are still alive, and hopefully you’ll agree with me.

I’ve tried to test the theme pretty thoroughly, but if you notice any bugs with the theme please let me know in the comments or in the support forums and I’ll see what I can do.

Related posts:

  1. Underwater – Free WordPress Theme
  2. Mountain Leaves – Free WordPress Theme
  3. Bolshevik – Free WordPress Theme

Today we have an awesome free WordPress theme, originally designed by Styleshout. This theme has a number of cool features and is reminicsent of the FreshPick theme, also designed by Styleshout. There are six widgetized areas, including a widgetized footer, as well as a custom widget included with the theme. It also has threaded comments, so you’ll need at least WordPress 2.7. Other features will also be gone over below.

Jungleland screenshot
Live Demo | Download

And now onto the features in more detail…

Thumbnails

This theme makes extensive use of thumbnails, so I coded in a custom write panel to insert thumbnails into your posts as an alternative to custom fields.

Jungleland Post Settings

  • Featured Image – This image is displayed next to your featured post on the main index template. It should be sized at 350×250.
  • Post Image – This image is displayed above the content on your single post pages. Thanks to the TimThumb script, a resized version is also used as the image under “Recent Posts” on your homepage.

For both, make sure you use the full path of the image. The images should also be hosted on your domain, otherwise the TimThumb script may not work.

Widgets

Like I mentioned above, this theme has a whopping six widget ready areas. One in the sidebar, four in the footer, and one on the 404 template.

For the first time, I also created a custom widget for the “Follow Us” links you currently see in the footer. This will require WordPress 2.8 to work, but if you’re currently using 2.7 it shouldn’t break anything.

Feed Links Widget

Simply place the “Feed links” widget in any one of the footer widget areas, and be sure to fill in the respective URLs.

Many thanks to WPengineer for the code to this, which I modified slightly.

flickrRSS

This theme has support for the FlickrRSS plugin, which you can currently see in the sidebar. Here’s a screenshot of my settings in case you’d like to set them up on your sidebar like I have them currently:

flickrRSS Settings

Conclusion

Hope you all like the theme. It was actually a bit easier to port than it looked, considering I had already done most of the work already with the FreshPick theme. As a lot of the markup was very similar, it was mostly just copying a lot of the functions over to the new theme.

Oh yeah, and for the first time in like 10 themes, there isn’t a theme option page included with the Jungleland theme. Sorry all you theme options lovers, but I couldn’t think of any justifiable reason to include one. If there’s something specific you’d like to change, a tiny code edit might be in order.

A special thanks to Omar Corrales who was kind enough to test out the theme for me and found a couple bugs that I missed. Sometimes it takes an extra set of eyes to find these things.

Let me know what you think of the theme in the comments, but if you have any support questions please make sure to post in the forums.