ColdForged
Forum Replies Created
-
Forum: Your WordPress
In reply to: Comics, Computers, PodCasting, And Still NothingYou’ve been blogging since February. Unless you fill a niche that needed filling and needed filling now (FontLeech classifies… they’ve been up for a few weeks but seem to have a large base already) building a readership takes a long time. You have to provide content that makes people want to come back.
I have yet to figure out how to do that, personally :).
Forum: Fixing WordPress
In reply to: Help! Suddenly no blog! (but can see admin panel)Note also that the last things to come out are two javascript files for comment quicktags. Could be related, could not be related.
Forum: Fixing WordPress
In reply to: Help! Suddenly no blog! (but can see admin panel)I’d recommend turning off plugins until it comes back.
Forum: Fixing WordPress
In reply to: “mark all as spam” vs “deletion” ?Great news, glad it’s helping you out :-).
Forum: Fixing WordPress
In reply to: Strange dropdown comments issuesThe reason the space is blank is because this code tests for “if( $comments )” and does nothing if there are none. You could have an else clause right around the “} //end if comments” part that displays some kind of link to your “make a comment” section. In terms of the “same line” part, as I said above try changing the “comLink…” div to be a span and see if that gives you what you want.
Forum: Themes and Templates
In reply to: Smoothest Template Ever?You’re in the Themes and Templates forum, hence I figure this is a downloadable WordPress theme. If it isn’t, perhaps you meant to post in the “Your WordPress” forum.
Forum: Fixing WordPress
In reply to: /feed/ to .xml mod rewriteRewriteRule ^http://tracks.upthetree.com/index.xml$ /category/tracks/feed/Forum: Themes and Templates
In reply to: Smoothest Template Ever?Very slick. Where is the download link?
Forum: Your WordPress
In reply to: Business site w/customized Obsidian & Page as homeI think it’s wonderful. I can’t actually see it, but I’m picturing it as lovely.
Forum: Fixing WordPress
In reply to: Strange dropdown comments issuesWhere is this plugin available? The reason they’re not displayed on the same line is that that link is placed inside its own div — so it can be shown and hidden, of course — which is a new block-level element. You could try spans instead of divs, but without the plugin code I couldn’t tell you how to change it. Similar with the “no comment no link” thing.
Forum: Fixing WordPress
In reply to: Strange dropdown comments issuesHard to help when there’s a “Please stand by” message with no links :).
Forum: Fixing WordPress
In reply to: Pulling category slug for useProbably the only built-in way would be the following (given that you’re in The Loop)
$cats = get_the_category();
foreach( $cats as $cat ) {
echo '<img src="/'.$cat->category_nicename.'.gif">';
}Forum: Fixing WordPress
In reply to: registered users have to write username/ email addy in comments?I don’t know what version you’re using or what theme or whatever, but using the default theme in 1.5 one of the features is that you do not need to enter in that information if you’re logged in. If this is your own theme, you can easily add support for it by basing it off the default.
Forum: Themes and Templates
In reply to: CSS Craziness & Take a look!In terms of the footer/sidebar problems, from what I can tell of your heirarchy and to get where you want to go you’d need to start by having the sidebar in a separately selectable element, like a #sidebar div. From there you could probably float it right and therefore have the footer be forced to the bottom of both. I can’t test it for certain because the markup isn’t there to support it.
Forum: Themes and Templates
In reply to: CSS Craziness & Take a look!The validation errors seem to be because you have one enormous unordered list for a sidebar and are trying to use paragraph tags as the headers for new subdivisions of content. Try having separate unordered lists for each of those subdivisions and get rid of all the paragraph tags in between.
I haven’t looked into the footer/IE problem yet.