doorframe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: thumbnail antialiasFor what it’s worth, my 2.5 has been properly creating thumbnails that are the proper size:
Forum: Fixing WordPress
In reply to: Gallery NavigationYou’d have to change wp_get_attachment_link() located in post-template.php from this:
return "<a href='$url' title='$post_title'>$link_text</a>";
to this:
return "<a href='$url' title='$post_title'>$post_title</a>";
I think. I haven’t tried that myself, but it should work.
Forum: Fixing WordPress
In reply to: Gallery NavigationAlso, if you switch ASC to DESC you can pull the last image instead of the first, or you can use it to pull two different images.
Forum: Fixing WordPress
In reply to: Gallery Navigationonedeep, good job! That works to pull the first image and properly link it to the gallery. You’re a hero.
Forum: Fixing WordPress
In reply to: Gallery NavigationI was wrong, this line of code used in index.php:
<?php previous_image_link() ?>
shows the last image uploaded into a gallery (or something) not the last image uploaded into the gallery associated with a particular post. So, as you upload new images, this image will change. Not what I wanted.
Back to the drawing board. Someone email Ma.tt.
Forum: Requests and Feedback
In reply to: New 2.5 editor is a disasterNo smilies!?!? Oh, the humanity.
Forum: Requests and Feedback
In reply to: What happens if we don’t want to use 2.5?What’s wrong with the backend?
Forum: Requests and Feedback
In reply to: Copyright of content of blogs????Google/Blogger is not the same as WordPress.
Forum: Requests and Feedback
In reply to: Timezone / post time / scheduled post issueI noticed that when I saved a post, the time it indicated was correct, but when the post saved itself automatically, it was using the wrong time zone. It seemed like a minor bug, but a bug nonetheless.
Forum: Requests and Feedback
In reply to: Image Upload faultyI often, though not always, have uploads freeze during “crunching” and then nothing happens.
Also, sometimes when uploads freeze and I exit out of the upload process, I lose all the images that were in the gallery, even if they were uploaded during a previous session.
Image uploads is seriously broken.
Forum: Fixing WordPress
In reply to: 2.5 image gallery uploads are unreliableSomething that would be nice, would be the ability to re-start stalled uploads at the point of failure. This way, if it freezes, we don’t have to figure out which files made it and which ones didn’t, we can just hit “continue” and the transfer will attempt to start again.
Forum: Fixing WordPress
In reply to: Gallery NavigationOk, if you use the Asides trick linked above, you can create a special appearance for your image gallery posts. If you put the following in, it will display the FINAL image from your gallery with a link to that image (not the gallery):
<?php previous_image_link() ?>
The next_image_link does not work. The next step to recreate Matt’s thing would be to modify media.php to display the image without the link so we can link back to the gallery. I guess you’ll have to create a new function.
My program skills are weak, but I can read it enough to modify what already exists. This shouldn’t be too hard.
Forum: Fixing WordPress
In reply to: Gallery NavigationThough, admittedly, I don’t know what he’s doing to pull an exemplary image from the image gallery… Hmm…
Forum: Fixing WordPress
In reply to: Gallery NavigationMatt’s using some variant on the Asides trick:
Forum: Fixing WordPress
In reply to: Find the Tag IDI found a roundabout way to do it for non-programmers. If you set up a tag cloud, the source code will indicate the ID numbers of each item in the cloud in the class name, such as “class=’tag-link-27′.”