January 2009
M T W T F S S
« Sep    
 1234
567891011
12131415161718
19202122232425
262728293031  

Recent Readers

View My Profile View My Profile View My Profile View My Profile View My Profile

Search

Have Your Sidebar Showing On Every Post

August 10th, 2008 by Clint and tagged , ,

In the default Kubrick Wordpress template, it is set up so that your sidebar only shows on your index.php page. If you are monetising your blog, then you will want your affiliate banners to show on every page and every post.

A common thing that may happen, is that a  post of yours will show up on page one of Google for a particular keyword. Unless this was your latest post, visitors won’t see any affiliate banners you may have down the side of your page.

There is a way around this, but it is a little technical.

  1. The first step is to login to your administration panel.
  2. Click the Design tab from the admin navigation menu.
  3. Select the Theme Editor tab from the administration sub-menu.
  4. Now select the WordPress default theme within the theme editor window from the drop down menu under themes to edit.
  5. Find and select the single post theme file (single.php) from the Wordpress default theme files to the right. You should now see Editing single.php at the top of the theme editor.
  6. Near the top of the file, find where it says:

    <div id="content" class="widecolumn">

  7. Change widecolumn to narrowcolumn so the code looks like the following:

    <div id="content" class="narrowcolumn">

  8. Now scroll down to the bottom of the file and find where it says:

    <?php get_footer(); ?>

  9. Directly above this add the following:

    <?php get_sidebar(); ?>

  10. Your final entry at the end of the single.php file should look like this:

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

  11. Once edited, simply click the update file button at the bottom right and go view your site. You should now have a sidebar on your post pages.

In many themes that you upload to your server to use, this may have already been done for you. Many people do like to use the clean lines of the Kubrick template though, and this little trick makes your blog have that much more advertising space on it.

Posted in Settings, Themes | 3 Comments »

Uploading Cool Stuff To Your Blog

July 25th, 2008 by Clint and tagged , ,

The standard Wordpress format is pretty cool to start with, and it’s even free which is amazing. However we want our blogs to do even cooler stuff, so that they not only look nice and pretty, but do some pretty tricky stuff that will help you out as an author, the end user, and most importantly, help us in terms of SEO so that Google demands to put you on its front page.

The type of things we can upload to our server where our Wordpress blog lives, are things such as Themes and Plugins. You’ll get pretty used to these two things and learn to love them.

A theme is a design or layout that is made specifically to work with Wordpress. There are thousands of free themes hanging around on the Internet waiting for you to use. If you want a customised theme to suit you or your business, then it is pretty easy and inexpensive to get one made up on somewhere such as getafreelancer or Elance.

Plugins are backend pieces of code that are designed to do different things but we will get into that later. For now, we need to know how to get these things on to your server.

FTP, or File Transfer Protocol for the geeks among us. A technical term that really says put something from my computer on to a remote computer (server in this case). Very easy to do once you have done it a few times.

First you will need an FTP Client (software) to do this. If you’re a real tech, then you can do this through Windows, but if you are like me, use a separate program designed to do FTP. A fantastic client around at the moment is FileZilla, an open source program (free) that is worth its weight in gold. CuteFTP is another, and if you’re a designer, then you may choose to use Dreamweaver.

Once you have your FTP client, you have to punch in the setting for your server, such as root directory, user name and of course password. Hit connect and if everything is OK you’ll connect to the remote server and be able to see in real time the entire file layout of your blog.

Now as this is a blog, personally I do not get the entire remote site and make a copy on my own computer like I would if it was a static website, but you can, especially if you want to back up the site. The simple thing to do here is to drag your theme and plugin files from your computer and drop them to the correct folders on the remote site. The correct folder is usually found in /wp-content/. Do this for as many themes and plugins that you may want to upload.

It may sound difficult (or maybe it’s the way i explained it that has confused you), but it really is easy once you have done it a couple of times. Uploading is not just limited to these things either. Images, webforms and documents can all be uploaded just like a normal web site.

Soon, we’ll look at what to do with these things that you have uploaded and how to use them.

Posted in Installation, Plugins, Themes | No Comments »