Re: Adding a Category Icon?
I recommend just using the image thumbnails instead. I know you were having trouble getting it to work but I just took a look at your site and think I've got a solution. I believe it's having trouble finding the correct path because the images are there. Version 3.0 due out later this year will handle these thumbnails much better and prevent people from having these sort of pathing issues.
For example:
http://cityeventscalendar.org/wp-conten ... 921722.jpg" onclick="window.open(this.href);return false;
Try this fix:
Edit your /classipress/includes/img_resize.php file and replace the following:
Code:
$image_url = "../../../../wp-content/uploads/classipress/".$_GET["url"];
with:
Code:
$image_url = "http://cityeventscalendar.org/wp-content/uploads/classipress/".$_GET["url"];
Hopefully that will fix it. If not, let me know and we'll try something else.