Tag Archive | "Programming"

Drupal theme making

Friday, March 20, 2009

2 Comments

Drupal theme making

Making a custom Drupal theme is actually quite easy. A Drupal theme is just a few PHP files, a CSS file, and an info file. I prefer the PHPtemplate theme engine (the default one) but you have several choices. See the bottom of this post for a link to the official Drupal Theme Developer’s Guide [...]

Continue reading...

Seperate Trackback and comments

Wednesday, March 18, 2009

0 Comments

Seperate Trackback and comments

With all the WordPress themes available to WordPress users, it always surprises me how these incredible theme authors don’t take a few extra seconds to separate their theme’s trackback from the comments. It doesn’t look very professional and it can make it extremely difficult to follow a conversation in the comments. Separating your trackback and [...]

Continue reading...

WordPress theme control hacks

Sunday, January 18, 2009

5 Comments

WordPress theme control hacks

Dynamic Content to homepage If you want to include a specific file in your homepage you can use this code: <?php if ( is_home() ) { include (’yourfile.php’); } ?> where ‘yourfile.php’ is the file that you want to include in the homepage Use different post templates for different categories Lets say you have a [...]

Continue reading...

Choosing right host for joomla

Sunday, January 4, 2009

2 Comments

Choosing right host for joomla

There are a lot of things to consider when choosing a web host. Usually the first things we look at are price, storage, and bandwidth, but I would argue that storage and bandwidth are mostly irrelevant as criteria for choosing a host. Buying a hosting service because it offers a huge amount of storage and [...]

Continue reading...