Saturday, March 31, 2012

Berylliumous



Berylliumous is a 5-in-1 professional free WordPress theme. Packed with a better framework and an admin options panel, this special WordPress theme has a fancy slider, clean design and twitter ready.

Probably Related Themes:

  1. Masugid
  2. Masipag
  3. Maparaan



Thursday, March 29, 2012

BeautySalon



BeautySalon is a WordPress Theme, that has a very clean, unique and professional design that is best suited for business sites such as beauty parlors, beauty salons, and spa salons. Our salon WordPress themes are pre-made templates for the popular WordPress blogging software. Our WordPress templates will give your blog a professional, high quality look that will surely impress your visitors. These unique beautiful designs are simple to customize and will allow your blogging website to stand apart from everyone else who use the free generic WordPress themes. If you already have a web blog powered by WordPress you may consider switching to one of our attractive themes we offer without losing any of the blogging content you have created.

Probably Related Themes:

  1. BeautySalon
  2. Beauty Style
  3. Yummy Cupcake



Tuesday, March 27, 2012

Celebrating our 2nd Birthday: Win a MacBook



Tomorrow – 9 July – will mark the exact date two years ago that we celebrated the launch of the WooThemes brand (after having traded under the name of Premium News Themes for the 8 months prior to that). Going through our blog archives, support forum & e-mail threads for the past 2 years, it’s obvious that the company has come a very long way and it is with that nostalgic feeling that we would like to invite you to celebrate our 2nd Birthday with us.

In the past two years, we have:

  • Released: 71 WordPress Themes, 7 Tumblr Themes, 6 Drupal Themes & 10 ExpressionEngine Themes.
  • Published 363 posts, in 38 categories using 386 tags. Also created 128 pages.
  • Expanded our team to 8 full-time members.
  • Grown our community to over 30 000 members.

As has always been the case with WooThemes, we try to give the WooFans much more than we ask of them, which means that even thought this is our birthday, we’ll be giving you some presents instead… :)

We’d like to give one lucky WooThemes user a brand-new Apple MacBook, along with a Apple Magic Mouse & a beautiful Built Cargo Sleeve to keep your new MacBook pretty. This package is valued at about $1200 USD & we definitely know that the lucky WooFan to get this prize will absolutely love it!

Want a new MacBook? This is how you can win…

Everyone that signs up for a club subscription (either Standard or Developer) from now up until the close of business on Monday, 12 July, will be entered into a random draw for the MacBook prize package.

Note: If you are already a WooThemes user and have purchased individual themes from us in the past, we can offer you an applicable discount to upgrade to a subscription instead. Just drop us a mail and we’ll help you out on that.

By signing up to the WooThemes Club right now, you’ll get access to 71 amazing WordPress themes along with incredible support resources to help you maximize everything related to your WordPress work. So it’s really a no-brainer, sign up to the club for amazing value AND stand a chance of winning a shiny Apple MacBook prize package. :)

REMEMBER: Our promotion with ScribeSEO – the awesome SEO & copywriting tool for WordPress? It is also still available and expires at the close of business on Friday, 9 July. So you should also grab that whilst you still can.


Monday, March 26, 2012

Customizing a Child Theme



Overview

Before we start it’s important that you understand what a child theme is. Read this guide from the WordPress Codex and also read a great explanation on the topic in this tutorial.

For a quick overview, have a look at this screencast:

Getting Started

To get started we need to prepare a child theme which means you’ll need FTP access to your host, so you can upload the new child theme. If you don’t have this, you should talk to your host so they can give you your FTP login details, and download a FTP program to upload your files.

Making the child theme

First we need to create a new stylesheet for our child theme. Create a new file called style.css and put this code in it:

/*Theme Name: Child WooThemeVersion: 1.0Description: Child theme for WooThemes.Author: WooThemesAuthor URI: http://www.woothemes.comTemplate: themedir*/ @import url("../themedir/style.css");

Next we need to change the Template field to point to our installed WooTheme. In this example we’ll use Object theme, which is installed under “wp-content/themes/object/“. We also need to change the imported style.css directory to point to Object. The result will look like this:

/*Theme Name: Object ChildVersion: 1.0Description: Child theme for Object.Author: WooThemesAuthor URI: http://www.woothemes.comTemplate: object*/ @import url("../object/style.css");

We’ve now got all we need to create a child theme. The next step is to upload this file to a new folder e.g. “wp-content/themes/object-child/”. Once uploaded, we can go to our WP admin panel and activate the child theme:

Activate the new child theme

Activate the new child theme

Your child theme is now ready to be modified. Currently it doesn’t hold any customization, so lets look at a couple of examples on how we can customize the childe theme without touching the parent theme.

Example: Edit stylesheet

Lets try the same example as we did before, changing the color of the navigation link in the stylesheet. Simply find the styles like we did in above and paste them into our /object-child/style.css file:

/*Theme Name: Object ChildVersion: 1.0Description: Child theme for Object.Author: WooThemesAuthor URI: http://www.woothemes.comTemplate: object*/ @import url("../object/style.css"); .nav a{color:#ff0000;}.nav a:hover{color:#000000;}

After saving the file, and refreshing our browser you will now see that the link colors should have changed, and if you hover over the style.css link in FireBug, you will see that the path points to the object-child directory.

Styles from child theme applied to parent theme

Styles from child theme applied to parent theme

Example: Editing template files

But wait, there is more! You can do the same with the template files (*.php) in the theme folder. Lets try to remove the top right description. This is located in header.php, so we need to copy header.php from our parent theme folder “wp-content/themes/object/header.php” to our child theme folder “wp-content/themes/object-child/header.php“.

Once we have copied it to our child theme, we edit header.php and find the description code on line 89 and remove it:

        <p id="tagline"><?php bloginfo('description'); ?></p>

Then we upload our changes to our host and refresh our page to check that the changes have been applied

Removing description from header.php in child theme

Removing description from header.php in child theme

Using functions in child theme

Although you can override template files in your child theme, functions.php will be loaded in both the parent theme and child theme (with the child functions loaded _before_ the parent’s) – so you can’t directly replace the functions already loaded in parent theme functions.php without some extra steps. For an example of how to override the parent functions, see this tutorial for adding your own theme options to a child theme.

TEMPLATEPATH vs. STYLESHEETPATH

WordPress has a few things that it handles differently in child themes. If you have a template file in your child theme, you have to modify how WordPress includes files. TEMPLATEPATH or bloginfo('template_directory') will reference the parent theme. To make it use the file in the child theme, you need to change use STYLESHEETPATH. The same goes for use of template_directory parameter in bloginfo() function, which needs to be changed to stylesheet_directory.

More info on this from the WP Codex

Alternative styles

If you are using an alternative style on your theme, then this will be loaded after the child themes style.css and overwrite your styles. There are two good ways to fix this:

1. Add body in front of your CSS tags so they override the ones in the alt stylesheet e.g. body #header { font-size:14px; }
2. You can unload the function from being outputted in the header by adding a functions.php file to your child theme (if you haven’t already), and adding remove_action('wp_head', 'woothemes_wp_head');.

Child Theme Support

Although we do offer basic child theme support that can easily be answered, it still falls under theme customization, so please refer to our support policy to see the extent of support we give.

We highly advice anybody confused with child themes to use the WordPress forums for help.



Tuesday, March 13, 2012

Silver Mag



Free magazine wordpress theme, silver colored with content slider and mygallery plugin built in, adjustable via theme options. Read me included with usage instructions. Theme is fixed witdth, with right sidebars, automatic image resizing, additional options for your blog subscribers, 5 spots for banners, page navigation built in, MUST SEE!

Probably Related Themes:

  1. Machito Tribune
  2. Brown Chameleon
  3. Silver Star



Sunday, March 4, 2012

GameWorld



GAMEWORLD Theme has a Unique design and a good layout . This theme is perfect for GAMES and MOVIES related blogs and sites. The Theme has a number of killer features such as theme options for setting the featured content slider and 125×125 advertisements , JQuery Powered Tabber and social bookmarks etc.

Probably Related Themes:

  1. TOONPRESS
  2. GreenMag
  3. SportsPlus