WordPress Plugin: The Attached Image
Warning
This plugin is here for legacy support only. WordPress now contains a featured image system which does the job of this plugin from within the WordPress core. Please try to avoid using this plugin unless it is unavoidable. I will still provide limited support via comments or email, but it will no longer receive any updates or bug fixes. If your theme needs to be updated to use the new featured image system instead of this plugin, I am available for hire.
What’s This Then?
The Attached Image is a simple plugin that packs quite a punch. It shows the first image attached to the current post. For example. If you have your home page set to 5 posts and you use this plugin it will show the first image attached to each of those posts. For a working example see celeborama.net which uses it to grab the picture you see floated to the left of each post.
It was inspired by a plugin wrote by Kaf Oseo, but when support & updates were no longer available & a recent upgrade of WordPress meant it didn’t work exactly like it used to, I decided to take on the challenge of remaking it using the newest WordPress functions available.
What’s It Do?
It has a lot of features, if you want to see them all then check the options list a litte further down the page. For now though here are some of the major ones that most people look for:
- Can show the full, medium or thumbnail sized image attached to the current post. Can now show custom thumbnail sizes added by WP 2.9’s post thumbnail support. Check here for more info.
- Can make a hyperlink around the image that points to the post the image is attached to, the full image, the attachment page or a custom URL using custom fields on a post by post basis.
- If more than one image is attached to a post then the image to be shown can be changed using the WordPress gallery page. Just pull the image you wish to show right to the top of the list and press save.
- Can be returned instead of echoed so the output can be stored in a variable for developers to use as they wish.
- Can show a default image if no image is available. Also changeable on a post by post basis via custom fields.
- and more…
How Do I Install It?
It’s actually really simple to install. The hard bit is deciding where you want the image to go, but that’s entirely up to you. Here are the instructions you need to get it up and running:
- First go and get the plugin. Either from here or using WordPress’ new plugin installer (available since WP 2.7). Just search for the attached image or Paul Robinson.
- Unzip & place the folder into the
wp-content/plugins
folder. (I’m going to assume you’ve done this) - Go to the plugins page of WP & activate the plugin. (Also assumed as done)
- Go into the template editor & find where you would like the image to show. It must be within the loop which looks something like this:
12345<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?><!-- Some HTML will be here --><?php endwhile; ?><?php endif; ?> - At the point you have found, place
<?php the_attached_image(); ?>
- Go to the ‘The Attached Image’ options page under the WordPress Appearence menu.
So What About The Options
Functionality Options
This option allows you to switch on and off the perma functionality for in post image. This checks the post content for an image and grabs the image with the number you have asked for. If that number of image is not available it will show your specified default or return with nothing. Just press the checkbox & put in a number. It starts at 1 not 0 like some may think, so if you want to get the first image in the post press the checkbox & type 1 then save. This type of functionality can also be accessed on a post per post basis using the custom fields as explained later in this documentation. This has been extended with a new option to pick a thumbnails size to use. This will only work if the images were uploaded with WP, if they were not or they are linked in from a external source it will default to showing the full sized image.
General Options
Well The Attached Image now comes with a options page so you can alter what it does from the comfort of your WordPress dashboard. The Attached Image is all about adding a feature to your blogs design & because of that I have added it under the Appearance menu. Here is a description of all the options and what they do. First the general options:
- Image Size
- This is the size of image you would like to use. As of version 2.2 it supports WordPress’ generated thumbnails, medium size, large size images, and of course the original full size image. You can now specify a size using a function call to override the options page. This is great if you want to call the plugin twice on two template pages & want to use different size image. Use
img_size=
and then either full, large, medium, thumb or custom, for more about custom check this post. Use ampersands (&) to seperate parameters. Use ampersands (&) to seperate parameters. - CSS Class
- This is the class that you would like placed in the image tag. The default is
attached-image
and can be styled as normal through a CSS stylesheet. This option is so anyone who already has a class can use that if they wish. You can also call a different CSS class using function call parameters again options are seperated by ampersands (&). CSS class’ parameter iscss_class
Don’t use spaces in CSS class names when using this method. An example of both image size & css class together would be this.the_attached_image('img_size=thumb&css_class=custom-class');
- Custom Image Size
- Here you can input a custom image size. Beware, this uses the inbuilt width & height attributes of the image tag & as such can degrade picture quality if used too aggressively. Please use with caution.
- Default Image Path
- A simple one. This is the path to a default image if you wish to use one. Empty or leave the box empty to disable it. Very Important the image path must be from the WordPress root & not your hosts root, it must also start with a forward slash (/). So if your blog is in
http://example.com/blog/
and you kept the imagedefault.jpg
in thewp-content
folder the path would still just be/wp-content/default.jpg
and NOT/blog/wp-content/default.jpg
. It is also NOT the ID of another image. - Image Link Location
- Do you want a link to be placed on the image that is produced & if so where do you want it to point. The possible options are no link, post, image & attachment page. I think it’s pretty self explanitory what they do. You can also provide a custom link on a post by post basis, more on that in the custom fields section further down the page.
- Image Alternate Text:
- Allows you to choose what the default alternate text for the image should be. You can choose either image filename, image description, post title or post slug. The description is taken from the description field that you can fill in when uploading an image via WordPress’ uploader. If one isn’t provided it falls back to the images filename. A custom value may be input via custom fields, see Custom Field Info below.
- Link Title Text:
- This is the text placed in the title attribute of the hyperlink placed around the image. This will only have an effect if you do NOT have Image Link Location set to No Link. The options are the same as the alternated text & a custom value can be input via custom fields, see Custom Field Info below.
Advanced Options
Now for the advanced options. Please be careful with these. Selecting the wrong option can result in the plugin not working correctly. I will at some point try to add a reset to default for instances where accidents have occured, until then though please be careful. Thanks.
- Generate An Image Tag:
- Fairly obvious… Whether to make an image tag or just place the full URL to the selected size image onto the page. If a link location is selected then it will also create the selected hyperlink around the URL. This can be useful to some people so feel free to be inventive.
- Echo or Return:
- Also fairly obvious, if you are a coder. Tells the plugin whether to echo out the output or return the output ready for processing by PHP. Can also be used to do some inventive stuff with the output.
- Hyperlink Rel Attribute:
- This should allow the plugin to work with most, if not all lightbox scripts. Refer to the documention of the lightbox script for what to place in the rel attribute.
- Image Order:
- By default the plugin will use the image in the first position of the WordPress gallery page. The image to show can be changed by reordering the images on the WP gallery screen, however you can use this to change which image it will pick. If you change this to 3 it will always try to pick the 3rd image in the WP gallery order. If there isn’t 3 images it will pick the nearest it can get to the 3rd image.
What About Those Fancy Custom Fields?
Some of the options can be changed on a post by post basis through the use of custom fields. These are the available keys, what they do & the values they expect. All of the keys prepended with att so that they are easily recogniseable as for use with The Attached Image & to stop conflicts with other plugins that may use custom fields.
- Key: att_custom_img
- This field is used to show any image from the WordPress attachment database, even if it isn’t attached to the current post. It requires the ID of the image you wish to show. It can generally be found out in the media section of WordPress.
- Key: att_default_pic
- Allows you to override the default picture that is to be shown if no picture is available. Path rules are exactly the same as the previously mentioned option.
- Key: att_width & att_height
- Pretty obvious, but it allows you to change the width & height of the image. It again uses the in-built browser method of resizing, so again be careful. Also please remember these are two seperate keys, I have listed them together but you must use two custom fields one for width & one for height.
- Key: att_custom_link
- Allows you to chose a custom URL for the hyperlink to go to. It will override the setting chosen in the options page for that single post. If you have selected no link in the options using this will override it and create a hyperlink for that single post.
- Key: att_custom_alt
- Allows you to chose a custom alt attibute to be placed in the image tag.
- Key: att_custom_link_title
- Allows you to chose a custom title attribute to be placed in the hyperlink. Only has an effect if Link Image Location is NOT set to No Link.
- Key: att_in_post_image
- This feature was requested by Jake Garrison. It allows you to display an image that is inserted into the post & not attached via the WP uploader. It scans for img tags in the post and places it where ever you place the plugin call. Options are a number starting from 1 of the img tag you wish to pic from the post. 1 will pic the first, 2 will pic the second and so on. If there isn’t a img tag matches the number picked it will leave a blank space (return false). Example. If you choose 4 and there are only 3 images in the post in will return blank (return false).
- Key: att_in_post_image_size
- Allows you to choose the thumbnail size for the in post image function. This only works if the image was uploaded via WP. If it wasn’t or is linked from an external source it will default to the full sized image.
Custom Queries
The ability to easily use custom queries was added as of version 2.5. There is now a second parameter for the query object. All you need to do is hand the query object over to the plugin. Here is an example:
1 2 3 4 5 6 |
//Custom Query Example $my_query = new WP_Query('showposts=2&cat=3'); while($my_query->have_posts()) : $my_query->the_post(); //Other Post Details the_attached_image('img_size=thumb&css_class=image', $my_query); endwhile; |
It should be fairly easy to follow. All you need to do is look for the variable that WP_Query()
is assigned to & hand it to the attached image.
Wait Up… I Have More Questions!
Really? You do! Well then your already in the right place. You can either leave a comment on this post, or if you prefer, you can send me an email using the contact page.
What If I Find Something I Want Added Or I Find A Bug?
Well you wouldn’t be the first. Most of the features now included with The Attached Image are there through requests made in the comments section, just scroll down & have a read. If you have found a bug or you want to request a feature then the process is the same as the last question. Leave a comment on this post or drop me an email via the contact page.
Alright… Say I’m Feeling Kind…
Ahhh. Say no more. If you are feeling generous then you can buy me a cup of coffee or two using the Paypal donate button just below.
If that’s not your sort of thing then you can always donate some money straight towards my hosting bill with Dreamhost using the button below. Dreamhost take payment via Paypal so you know it is safe & secure.
That It?
Yep. I’d just like to say a thank you to everyone who has downloaded, used, supported, commented on or even just looked at my plugin. It might be me who writes it, but without you guys out there to use and appreciate it there wouldn’t be a point. Thank you so much.
Also a little extra thank you to Alisher, Brian Wood, Steve, Jasper Visser, Jennifer the scriptygoddess, and RougeDeals. All these lovely people suggested a feature that got added to The Attached Image or have identified & helped fix a bug. Also a final thank you to everyone who has linked back to me and helped popularise The Attached Image.
Ya, Finished Now
Actually no, not quite.
Legacy Overrides
These are a list of legacy parameters that allow you to override the values set in the options page. This is useful if you want to have more than one call the the_attached_image()
on different pages in your template, but you want them to show different size images, or remove the link and other things. Basically it allows you to call the plugin twice, but have it do two different things. The parameters are entered in Query String format an example is the_attached_image('img_size=medium&link=image&css_class=featured-image');
.
img_size
- Changes image size to be pulled back by WordPress. Options are thumb, medium, large & full, or custom. Default is thumb.
css_class
- The CSS class to place inside the image tag.
img_tag
- Whether or not to echo the URL in an image tag. Options are true or false. Default is true.
echo
- whether to echo or return the output. True will echo, false will return. Default is true.
link
- Where you want the link to go. Will only work if href is set to true. Options are none, post, image and attachment. It is also possible to use a custom URL via the custom fields, please refer to the custom fields section above for more. Default is post.
default
- The path to a default image if one is wanted. The path must start with a forward slash and be based from the wordpress directory, not your hosts directory. Options are false & a path to the image. Default is false. Can also be adjusted via custom fields, again check above for more.
width & height
- Two seperate parameters that do the obvious thing. The set a custom width & height for all images. This only resizes using the image tag width & height attribute, as such quality will suffer greatly when resizing too much either way. Also adjustable using custom fields, check above for more.
image_order
- Allows you to change which image the plugin uses from the WP gallery page. Normally, if there is more than one image, the plugin will pick the image marked in 1st. This allows you to change that. If there isn’t a picture at the position then it will take the pictures as near to that number as possible. Default is 1
rel
- The rel attribute is generally used to add lightbox scripts. Just put the word shown by your lightbox instructions here and all should work as long as href is set to true & link is set to image, since there has to be a link and the URL to the full image for the lightbox script to work.
alt
- Allows you to choose what the default alternate text for the image should be. You can choose either image filename, image description, post title or post slug. The description is taken from the description field that you can fill in when uploading an image via WordPress’ uploader. If one isn’t provided it falls back to the images filename. A custom value may be input via custom fields, see Custom Field Info above.
title_link
- This is the text placed in the title attribute of the hyperlink placed around the image. This will only have an effect if you do NOT have Image Link Location set to No Link. The options are the same as the alternated text & a custom value can be input via custom fields, see Custom Field Info above.
If You Are Still Using An Old Version Without The Options Page
You should really upgrade to the latest version so you can use the new options page, but if you are one of those people who just loves the old school (and why not) then here is a list of parameters. Custom fields are still exactly the same so please use the list above.
img_size
- Changes image size to be pulled back by WordPress. Options are thumb, medium, large & full. Default is thumb.
css_class
- The CSS class to place inside the image tag.
img_tag
- Whether or not to echo the URL in an image tag. Options are true or false. Default is true.
echo
- whether to echo or return the output. True will echo, false will return. Default is true.
href
- If you plan to use the link feature (which will automatically generate an href around the image) then you must set this to true first. Options are true or false. Default is false.
link
- Where you want the link to go. Will only work if href is set to true. Options are none, post, image and attachment. It is also possible to use a custom URL via the custom fields, please refer to the custom fields section above for more. Default is post.
default
- The path to a default image if one is wanted. The path must start with a forward slash and be based from the wordpress directory, not your hosts directory. Options are false & a path to the image. Default is false. Can also be adjusted via custom fields, again check above for more.
width & height
- Two seperate parameters that do the obvious thing. The set a custom width & height for all images. This only resizes using the image tag width & height attribute, as such quality will suffer greatly when resizing too much either way. Also adjustable using custom fields, check above for more.
image_order
- Allows you to change which image the plugin uses from the WP gallery page. Normally, if there is more than one image, the plugin will pick the image marked in 1st. This allows you to change that. If there isn’t a picture at the position then it will take the pictures as near to that number as possible. Default is 1
rel
- The rel attribute is generally used to add lightbox scripts. Just put the word shown by your lightbox instructions here and all should work as long as href is set to true & link is set to image, since there has to be a link and the URL to the full image for the lightbox script to work.
alt
- Allows you to choose what the default alternate text for the image should be. You can choose either image filename, image description, post title or post slug. The description is taken from the description field that you can fill in when uploading an image via WordPress’ uploader. If one isn’t provided it falls back to the images filename. A custom value may be input via custom fields, see Custom Field Info above.
title_link
- This is the text placed in the title attribute of the hyperlink placed around the image. This will only have an effect if you do NOT have Image Link Location set to No Link. The options are the same as the alternated text & a custom value can be input via custom fields, see Custom Field Info above.
in_post_image
- This feature was requested by Jake Garrison. It allows you to display an image that is inserted into the post & not attached via the WP uploader. It scans for img tags in the post and places it where ever you place the plugin call. Options are a number starting from 1 of the img tag you wish to pic from the post. 1 will pic the first, 2 will pic the second and so on. If there isn’t a img tag matches the number picked it will leave a blank space (return false). Example. If you choose 4 and there are only 3 images in the post in will return blank (return false). Can also be set via the custom fields, without setting this parameter using the key above. Warning: This will override the normal function of this plugin if set as a parameter. If you use custom fields the plugin will work as normal except for the posts it is used on.
in_post_image_size
- Allows you to pick a thumbnails size for the in post function. Will only work if the image was uploaded via WP. If it wasn’t or it is linked from an external source it will default to the full sized image.
That’s all the parameters, but seriously you should upgrade to the latest version. There is tentative support for the parameter based system, but it is only there as a backup until I can safely assume everyone is using the new options system. Please don’t hesitate to leave a comment if you have problems switching over to the new system, it is a lot better.
Now are you finished?
Yes, now I’m done.
Update: 14/12/2009
I’ve just created a PDF file to show everyone some of the advanced uses available when using The Attached Image. Hope it is of use. 🙂 Advanced Uses For The Attached Image PDF
Update: 07/04/2010
After a few questions about how to use The Attached Image, I have decided that a visual approach is the best way to explain, so here is a video on how to add The Attached Image to your theme.
[pro-player width=”560″ height=”350″ type=”mp4″]http://return-true.com/wp-content/uploads/videos/UsingTheAttachedImage.mp4[/pro-player]
556 Comments
Veneficus Unus
Hey sean,
could you send the code via email to pablorobinson[at]gmail[dot]com as code won’t render properly in the comments because of the theme I’m using. I’m getting ready for a redesign soon which should hopefully sort out that problem.
Again if you send the code to my email I’ll help as soon as I can. Thanks. 🙂
Jake
Righteo, I finally worked out how my related posts plugin works. I can access each of the related posts IDs using the following bit of PHP code.
Now, how do I incorporate this code into The Attached Image code, so that I can display an image for each related post? Thanks in advance, you are always so helpful!
Veneficus Unus
Hi Jake,
WordPress is being a pain again & has completely removed the code you included with your comment, if you can send it to me in an email to pablorobinson[at]gmail[dot]com I’ll help you asap.
I’ve no idea why WP keeps doing that but I think it’s something to do with the theme, it’s a good job the site is due for a redesign soon. 😉
Adambrz
Can you modify the in_post_image to respect the echo=false attribute.
Veneficus Unus
That has been fixed now. The update should be available from the wordpress plugin repository in a few minutes. 😉
RogueDeals
I just thought of a stupid feature for you to consider, and it would be challenging too! So here it goes.
As it is now, for each post, your plugin returns a thumbnail for that given post.
What if, you made it so that it was able to create a master-image file “cache” with all the post thumbnails… so that they would all be stored in one image file which then would be smart enough to create a css sprite style to display the correct image within the image for the post in question.
A CSS sprite uses one bigger image, for example, a big image with a bunch of icons inside it, spaced out every X height. CSS only has to download the image once, thus only one http_request sent to the server. When a thumbnail wants to be used, it goes X pixels down and uses the thumbnail size Y height Z width to pick the area to display.
Im not sure if I explained clearly, infact, im sure I haven’t… but if you just google css image sprite, im sure it will become clear.
The purpose of this functionality would be to only make 1 http_request for all the attach_image thumbnails so that the page loads faster.
I am working on doing this now for my site and thought it would be cool if your plugin had this feature built in.
-Eric
Veneficus Unus
I get what you mean. Similar to how you make no-delay loading CSS rollovers. You make an image with both the standard & over state on & then use CSS to move the background when you hover.
I think the problem with that would be that without a powerful image manipulation program such as imagemagick (which not everyone has) it would destroy most servers trying to make the image. Mainly because GD, the normal image manip prog, doesn’t have a memory limiting function like imagemagick does, so if GD reaches the memory limit on the server it will crash.
Other than that huge problem, lol, it is actually a excellent idea. Don’t worry though I’m going to add it to my list of ideas & keep looking into it. You know how I feel about challenges. 🙂
Thanks for stopping by again. 🙂 Oh and if you are on twitter feel free to follow. 😛
Droid
Hi, I have a question.
From the description:
Image Order:
If there isn’t 3 images it will pick the nearest it can get to the 3rd image.
Is there any way to get the plugin to do nothing in this case? just return false.
In my case the plugin duplicates the thumbnails
thanks in advance
Veneficus Unus
Hmmm I’m not sure, I don’t think so due to the way it grabs the nth image. If you just needed it to get a different thumbnail I’d say use custom fields to override the option, but I can’t think of anyway to get it to return false instead. Sorry. 🙁
I’ll keep looking though to make sure it can’t be done.
RogueDeals
Its me again. The first tab on my site, never displays the thumbnail correctly.
Here is the query calls. Is it because there are two loops, does it get confused or something? I can’t think of any other reason behind it not generating the thumbnail.
RogueDeals
Ok, well that didnt work. using the pre tags…. hmmm, what should I do to get the loops I am using to you? Ill try to email it to you.
RogueDeals.com
Me again with another feature idea!
When you use the option to use the nth image in the post it uses the full size image. You should write a function to check to see if there is a thumbnail of that image instead of always using the full size image
This is why I turned off using the Nth image in the post because it was adding a lot of size to my loading time.
To code it, I’d say, the attached image dimensions have to be the same as the wordpress thumbnail size.
It would be as easy as doing making an if image/imagefile($width)x(height).png exists, else.
To make it easier for people to resize thumbnails for this requirement, maybe link to Regen Thumbnails plugin:
http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/
I use it and it works great if I want to change the thumbnail size.
Hope you consider this 🙂
Eric
Veneficus Unus
Well I did actually consider that when I first made the get nth image function, but I hit a wall I could never get round.
It might sound stupid, but here is the problem. I can’t find out the width & height. Yep, I know, it’s stupid but I have no way to figure out the width or height since WordPress keeps track of them in it’s database but because the image isn’t attached I can’t get the info from the database. 🙁
If you can suggest anyway around that problem I’m all ears, I’ve been struggling with it for a month or two now.
Thanks for the suggestion though. 😀
Sorry I didn’t answer your other comments, I got your email (as you know) but WP didn’t send me a comment notification for the others for some reason.
RogueDeals
I’ll look around to see if I can find the database entry for the thumbnail sizes.
Like I said in the previous post, another option would be to instruct users of your plugin to use the same dimensions as the ones defined in the wordpress media settings, that way you can just pull your height and width numbers and not worry about what wordpress uses.
RogueDeals
It may be in wp_options table:
(70,0,’thumbnail_size_w’,’48’,’yes’),(71,0,’thumbnail_size_h’,’48’,’yes’)
check it out 🙂
Veneficus Unus
The problem is not with the thumb sizes (if crop is on) but with the medium, and large sizes (and the thumb if crop is off). I would need to know the exact sizes that WP used & in the case of proportionate thumbs it works it out it’s self.
I guess I could find the correct options & then try & work out the proportionate sizes myself like WP does, but math gives me a headache, lol. I might have to seek out my sis’ help (she’s good at math). 😆
Thanks for finding that, I now have somewhere to start from. 🙂
Roguedeals
Wonderful update! This is amazing. Now, even though WP screwed up my posts, and forgot that I attached images to those posts, using the 1st image in the post with the new thumbnail option is awesome! You are the best bro. Keep up the terrific work.
I may pick out something else from your wish list in the coming weeks for your effort.
Thanks again,
Eric
RogueDeals
I noticed that its taking the normal image still on some posts even though a thumbnail image exists. Ill try to figure out a pattern of why its only doing it to some of my posts, but again, not sure why yet.
Veneficus Unus
No problem. I’m just glad my plugin is still helping people. 🙂 Thank you if you do purchase something from my wishlist, it’s much appreciated. 😉
I expected some bugs, the whole system to figure out the thumbnail sizes is quite complicated without WP’s help. I’m just glad that you are able to help out with the debugging it makes the whole process so much easier. So thank you so much for all your help with the fixing of bugs.
Let me know what you find, in the mean time I’ll keep looking myself. 🙂
RogueDeals
Just wondering if you were able to find WPs other DB entries for the other sizes? They are all in that wp_options table
Veneficus Unus
yeah they are listed as thumbnail_size_w/h, medium_size_w/h and large_size_w/h. I’ve added in the ability to pick what thumb size in the options page. So far not sure what is causing the problems your having though.
I’m off to bed for now, but I’ll check more tomorrow. 😉
RogueDeals
I cannot find any correlation to with the images that are not using the correct (thumbnail) size. I have no idea whatelse to try. I’m going to take a look at your code today and see if I can see anything apparent.
– Eric
Veneficus Unus
Hey there Eric,
I’m not sure what to suggest. 🙁 By not loading the correct size do you mean for example that you said thumbnails but it is loading some of them as large images? Or is it loading the full size instead?
I did have a problem like that when I was developing that part of the code, but I thought I’d fixed it. There must be some sort of a bug, I’ve yet to duplicate it though, so anything you can find in the code would be a great help in fixing it.
Thanks again for all your help with fixing bugs & for supporting the plugin. 🙂
RogueDeals
No problem, Im glad to help.
Let me clarify with what I mean about the issue I am experiencing.
-I am using the Nth image instead of using the attached image
-I am using the 1st image
-the 1st image has a thumbnail in the directory
-some of them use the correct thumbnail image (one that is actually thumbnail sized)
other posts are using the bigger image even though a thumbnail exists (it is scaling it correctly, but this is creating longer load times since it has to process the full image size)
Feel free to go to my site and right click->properties on the thumbnails on the sidebar and youll see some of them are full size some of them use the thumbnail.
The ones that are using the full sized image actually have thumbnails. You can verify this by copyign the image location path for the ones that use the full size and just change the ending to -48×48. instead of 150×150 or whatever it is.
Any more questions, let me know!
Eric
RogueDeals
Test version is still working like a charm!
Veneficus Unus
Thanks Eric.
I’m just about to commit the update to SVN now so that everyone else can update. Thanks again for testing. 🙂