Archive for February, 2009

I mentioned a month ago or so that a lot was happening right now, the first step being our new dedicated server (which is ace and so quick!). The next, and more major step, is that on Monday David and I formed a Limited Company and will start trading under this from 1st April.

I've been a soletrader for almost 8 years now, and have thought/intended to go limited earlier however a lack of time and organisation just meant I never really got around to it. However, last year we were thinking about forming a partnership (and never got around to it!), so this year we're getting everything sorted, the new server, a new company and it'll be VAT registered too (VAT registration is not a requirement of a UK company under a certain turnover, but we've gone for it anyway), automated billing software for the client hosting and domains, and more.

There's so much to sort out now! New bank account, business cards (courtesey of Moo Cards), letters to write, client details to input, plus to still work full time!

March is going to be a busy month of sorting things out, but it'll be worth it :)

I've recently been finishing off a site where I needed a lightbox to simplify showing several photos for each product. I've used Thickbox in the past, as it comes with WordPress by default, however this is a custom built site. I already had the latest version of jQuery running for other functions on the site, so just needed to grab a copy of thickbox, upload that, add the necessary code and that should be that.

3 hours of going around in circles later… and still no joy! After checking over my code piece by piece, trying the code out of WordPress, trying the page on another server just in case, and trying every other option I could think of, I finally tried uploading jQuery 1.2.6 from my WordPress 2.7 folder on my computer, and hey presto, it all worked!

It seems that there is a minor change required for thickbox to work with the latest jQuery version. After a bit of searching around I found out that what's needed is on line 79 of the existing thickbox file you need to change the line

Existing Thickbox Code
  1. TB_TempArray = $("a[@rel="+imageGroup+"]").get();

to not include the @ sign in it ie.

New Thickbox Code
  1. TB_TempArray = $("a[rel="+imageGroup+"]").get();

Such a simple change that caused a few hours of frustration! So hopefully it may be of use to someone else :)

Last week I wrote about using WordPress for Project Management and it got mixed responses. However, I know how I want to set things up and WordPress is perfect for what I've got in mind.

Maybe I need to elaborate on a couple of things. At most we have maybe 3 or 4 people on a project, or sometimes it's just the two of us, so standard project management software is too excessive for our needs. All I need to do is create a post, write a to do list, add the initials after each item for the person who's dealing with it, and that's it. Then we can just make comments on the post with questions and/or updates about the work. The comments are timestamped which obviously helps, and I'll get an email for every comment. You can also subscribe to the comment feed for each post, so all everyone else will need is a lightweight feedreader and they can just add the comment feed for current work posts to keep up with the discussion.

It's simple, but that's all we need. Somewhere for me to list the work needing to be done that we can all access, and somewhere to share the discussion, where the discussion is logged for future reference.

Today I decided to try out a plugin called Allow Categories which allows you to restrict any non Admin to only see posts from specific categories. This isn't to try and hide our work from the freelancers that we employ, but more to simply reduce what they need to wade through really. The restriction/hiding of posts works fine, however all categories were still being displayed in the category list in the sidebar, so after various attempts I've managed to use a function to override the wp_list_categories() output, and remove the specific categories that shouldn't be displayed.

I've added my first actual project post for a new site that needs to be sorted out over the next couple of weeks. It took me all of a couple of minutes to type up what needed doing plus leave a comment with an update of what we were still waiting for from the client and what could be started.

Besides adding the other projects that are currently on, I just need to work out how I want the front page to work and look. So far so good :)

Latest Tweets