Archive for the Errata Category

Missa will not be in class today because…

Posted on Wednesday, August 18th, 2010 at 1:35 am Posted in Blog, Site Notes | No Comments »

…she has another website. Read the rest of this entry »

Home Improvements

Posted on Saturday, March 13th, 2010 at 9:53 pm Posted in Blog, Errata | 1 Comment »

Just for something completely different, I’ve been working on redoing the bathroom.  (Well, no, technically I did it because mom told me to.)  So what happens when your friendly neighborhood sempstress trades in her sewing machine and scissors for a paint brush and a miter saw?  Here’s what’s been keeping me away from the computer…. Read the rest of this entry »

Hey, Internet – sorry I hid your files!

Posted on Wednesday, February 3rd, 2010 at 11:10 am Posted in Blog, Site Notes | 3 Comments »

So I just realized that I’m getting a whole mass of 404s (ie, the dreaded “File Not Found” error). I don’t know why that was a surprise, since I moved everything last August. I’ve added little redirect-y pagey-poos for the worst offenders. I guess I should have done that last August… Read the rest of this entry »

Hey, whoa, whaddaya know, I’ve got a cart!

Posted on Monday, February 1st, 2010 at 8:26 pm Posted in Site Notes | No Comments »

How totally cool is that? I’m using wp e-commerce, and in spite of all the problem reports, it seems to work just fine for my purposes (ye olde digital downloads). Well, at least, it seems to work just fine here. On my little test server (which is my mac, running Apache/mySQL through MAMP) it’s hopelessly cranky and will not produce download links for files purchased. Le sigh. Read the rest of this entry »

Testing Cart Software

Posted on Monday, February 1st, 2010 at 7:24 pm Posted in Site Notes | No Comments »

I really hate to do this on a “real” site, but I’m testing out some cart software at the moment. Don’t be alarmed by anything weird you might see (like empty product pages, etc)…. Sorry!

Woot! I Made a WordPress Theme!

Posted on Monday, January 25th, 2010 at 7:30 pm Posted in Blog, Site Notes | 5 Comments »

Well, ok, by “made” I really mean “found one I liked a lot and hacked at it to get the details right then changed the graphics”. But, however you want to say it, Sempstress running under WordPress is starting to look a lot more like home…. :)

In other news, Read the rest of this entry »

More Theme-a-Rama

Posted on Wednesday, October 28th, 2009 at 11:53 am Posted in Site Notes | No Comments »

It’s pretty again! Yay! I like pretty…..

My apologies to anyone who was trying to read anything while I was bouncing through themes. That was probably ugly.

How Thematic!

Posted on Sunday, October 25th, 2009 at 11:49 am Posted in Site Notes | 2 Comments »

I just upgraded my wordpress install, and reverted to the most standard of standard themes. I’m hoping this will fix the issues people have mentioned about browser problems, etc. Please expect to see a new theme in the next couple of days – I miss my tagcloud and image frames already!

Millinery Instructions Back Online

Posted on Monday, September 7th, 2009 at 1:17 pm Posted in Site Notes | 5 Comments »

All of the old Millinery articles are back online. (My super-cool html-to-WordPress script didn’t work as well as I thought, and only a third of the millinery stuff imported properly.) You can find them through the tag cloud, under Millinery or Hat Making. I’m going to try to get Ye Olde Dial-a-Dress up and running next.

WordPress: Category sensitive Digg links

Posted on Friday, August 28th, 2009 at 2:55 pm Posted in Code | No Comments »

I wanted to add Digg links to all the pages in specific categories.  Smashing Magazine had a trick for adding Digg links based on custom fields, which is great if you are the person who can remember to add the custom fields.  I’m not.  Here’s a modified code snippet that you can add to your single.php file, to produce a Digg button on all pages in a list of categories:

<?php
   if (in_category( array('category1', 'category2', 'etc'))){
      echo '<script src="http://digg.com/tools/diggthis.js"
      type="text/javascript"></script>';
   }
?>