gambit37
Forum Replies Created
-
Forum: Your WordPress
In reply to: Examples of WP that don’t look like blogs?I’ve just this evening put live the new version of my portfolio/blog, all powered by WordPress. The blog part is still ‘bloggy’ looking, but the rest is more like a traditional portfolio website:
Forum: Plugins
In reply to: Pull latest attachment from post?I have a website, but no donate button. 🙂 Not to worry, I’m glad to help.
Forum: Fixing WordPress
In reply to: Background music that’s persistent between pagesOK, well your situation is a bit different and I apologise if I sounded a bit harsh. My point of view is based on the building of commercial and not-for profit professional sites where music simply isn’t the done thing.
Forum: Fixing WordPress
In reply to: Background music that’s persistent between pagesI’d seriously consider if that’s a good idea. You might like something that could be seriously off putting for your readers. Music is a highly personal thing and a lot of people don’t want music while they are reading, particularly if it isn’t their taste.
For others, they might already be listening to their own music through their computer and there is nothing more obtrusive and annoying than a website that tries to outdo your own current favourite track by suddenly blasting out with some unexpected noise.
Please have a read of these:
http://www.seomoz.org/blog/how-to-convince-a-client-their-site-doesnt-need-music
http://www.lifespy.com/2006/no-background-music-please-were-websites/If after that you still think background music is a good idea, then go ahead and implement it but at least give people the option of switching it off. (Searching for “background music on websites” on google will give you plenty of solutions.)
Forum: Fixing WordPress
In reply to: Background music that’s persistent between pagesWhat I mean is you would build your whole website in Flash.
Flash doesn’t have the concept of ‘pages’ — you effectively build an application that’s self contained and does everything in there, including playing music when it starts — the music can be controlled however you like. The Flash app just sits on a single webpage. If you’re building a normal kind of text based website, just forget about Flash, it’s not designed for building accessible, usable and seo friendly sites and it definitely doesn’t have a place in blogging, unless you’re using it to power audio/video or animated content.
What exactly do you need background music for?
Forum: Fixing WordPress
In reply to: Background music that’s persistent between pagesYes, that’s the only way, or do it in Flash. Using frames sucks though for many, many reasons.
Anyway, thrusting music on your visitors that they might not want is simply rude: if you do insist on including music, make sure you have a way of turning it off.
Forum: Plugins
In reply to: Pull latest attachment from post?I needed a good pointer on how to display image attachments for posts from a particular category, and am very thankful for the function posted by ‘mores’ above. I made some minor change so that I can query just the category I want and also to remove the link on each image as this is just a slideshow of the full size images:
function categoryImages($size=large,$catID) { $posts=query_posts('cat='.$catID); foreach( $posts as $post ) { if ( $images = get_children(array( 'post_parent' => $post->ID, 'post_type' => 'attachment', 'numberposts' => -1, 'post_mime_type' => 'image',))) { foreach( $images as $image ) { $attachmenturl=wp_get_attachment_url($image->ID); $attachmentimage=wp_get_attachment_image( $image->ID, $size ); echo $attachmentimage; } } else { echo "No Images"; } } }The function to place in your theme template is:
<?php categoryImages('large',22); ?>…or whatever your category number is.
Forum: Requests and Feedback
In reply to: WordPress wants to turn my blog into a wikiI think the revisioning system is useful for blogs with multiple authors/editors, but it is rather overkill for most single user blogs.
WordPress is trying too hard to be all things to all people. It should stick to what it does best. If I want a wiki, I’ll use wiki software, if I want a proper CMS, I’ll use a proper CMS.
If WordPress went back to its roots and focussed on making a better blogging experience instead of bloating it with features that most people don’t need, it would encourage me to continue using it. As it stands, I’m in the same boat as you.
While I need to continue using WP on a couple of sites due to the sheer time investment involved in getting them to where they are, I certainly won’t be using it for anything in the future.
Forum: Requests and Feedback
In reply to: WP 2.5 Write Panel UsabilityI just got a notify about 2.6 being released and was looking at the screenshot on the blog posting which shows the categories and tags have been moved back to the sidebar.
Can anyone clarify this?
EDIT: Bugger, never mind, I see that the screenshot is for the Press This! bookmarklet, not Write. 🙁
(Also disappointed to see that “The 2.5 branch will no longer be maintained so everyone is encouraged to upgrade” — WP upgrade policy is getting ridiculous!)
Forum: Requests and Feedback
In reply to: WP 2.5 Write Panel Usability@gebintit: There’s an extra tweak you need to do:
Near line 1261 in wp-admin/wp-admin.css, change
margin-left: 120px;to
margin-left: 0;Forum: Requests and Feedback
In reply to: Where to Post Improved Code?Start here I think:
Forum: Requests and Feedback
In reply to: I am new for wordpress i want some guidanceYou won’t get any help here in supporting a warez site!
Forum: Requests and Feedback
In reply to: Problems for Visually Impaired AdminsI really feel for you. I build fully accessible websites as it’s something I feel very strongly about, and I am getting more and more alarmed at the inaccessible JavaScript based junk that’s creeping into web apps without any kind of fall back for accessible alternatives.
It’s especially alarming to see companies such as Happy Cog and Automattic being involved in this slippery slide — they both advocate web standards (indeed Zeldman, Happy Cog founder, also founded the Web Standards Project) and good accessibility is accepted to be part of web standards.
I don’t know what the hell is going on anymore in the web development world. Some people call it progress, I call it madness.
Forum: Requests and Feedback
In reply to: 2.5 admin backend annoyingIt’s a good idea for a solutions thread, but like all threads it will slowly drift down the forum and get lost. It would need to be sticky (ie, it remains at the top of the forum) to make a difference and that seems a difficult thing to achieve around here. Perhaps if you ask a moderator, it might be done?
Forum: Requests and Feedback
In reply to: 2 things about 2.5 that bug me…I agree and we’ve had this discussion already. If you want to add your voice to where it will actually make a difference, do it in Trac:
http://trac.wordpress.org/ticket/6315
WP developers don’t read this forum apparently (so we recently learned), so unfortunately making these kinds of comments here is largely pointless.