markmichon
Forum Replies Created
-
Forum: Plugins
In reply to: Override <!–more–> function in the_content() in non single / perma.Well if you are using the_excerpt for everything else, you could just not use the more tag at all. It’s never automatically placed, so as long as you aren’t using it the posts will always display full.
Forum: Fixing WordPress
In reply to: htaccess to send www to non www not workingAre you using the code from no-www.org? That’s what I used when my blog was up and it went fine.
Forum: Plugins
In reply to: Can Anyone identify wat “widget” they use on this site?It’s not a widget. It’s a method of using javascript to display what is known as the lightbox effect.
There are a few plugins available. Check out this one or search around for lightbox
Forum: Developing with WordPress
In reply to: dropped from Google in mid-Mayhave you tried https://www.google.com/webmasters/tools/siteoverview ?
I’m sure google is best capable of answering the question, but the only thing I can think of is that you have a bit of duplicate content in your date-based archives. Maybe make it so google won’t index them.
Forum: Installing WordPress
In reply to: Failed upgrade 1.22 to 2.2.1I think the problem you might be having with your index is that WP has since moved to a theme-based system. No longer are you modifying the root index.php file. Make a backup of your index file, and make sure you copy over the one that comes with WP incase you haven’t done that.
Forum: Developing with WordPress
In reply to: Custom Admin CSS – can’t change one color; AJAX questionTo answer question 1. Line 13. #69c is shorthand for 6699cc. change the bottom-border color to whatever you want. It’s on the general “a” styling. Bottom border is often used instead of the text-decoration tag, as it’s more versatile.
Forum: Themes and Templates
In reply to: Date not showing on News poststhe_date has a special clause that basically makes it only appear once per day. To get around this, you need to use the_time.
for example
<?php the_time('F jS, Y') ?>
will display asJune 23, 2007
Forum: Plugins
In reply to: Image Manager for WP 2.2?I have been running it on my test blog (2.2.1) and it works fine. worked fine on 2.2 also. Are you running the most current version of the plugin from here?
Forum: Installing WordPress
In reply to: Upgraded to 2.2.1 but Version Still Shows 2.2the includes folder is pretty important, since over half the changed files are found in that folder.
Forum: Requests and Feedback
In reply to: Will upgrading ever be easy?Maybe we are doing a different upgrade process, but every time I upgrade it takes less steps than the initial install. I agree it would be nice to be able to do things from within the wordpress UI, but difficult? Not from what I have seen.
The biggest issue normally comes down to plugin conflicts, but the team seems to be working more to let plugin devs know when certain things are being deprecated.
Forum: Requests and Feedback
In reply to: PhpmyadminThis Link and this one are pretty extensive. I’d say that most people on the forums tend to get tired of the “basic” questions that are asked over and over again.
Maybe the problem is that “codex” or “docs” isn’t a user friendly enough term. I’ll admit the codex in general, at least the front page, is a bit too cluttered.
Forum: Themes and Templates
In reply to: Centering an entire themeI could have sworn the default theme was centered already. Anyway..google is your friend
Forum: Themes and Templates
In reply to: Dynamic Highlighting & is_archive problemWell, if anyone in the future is interested. The reason I was having the problem is somehow related to placing your nav in the footer(sounds odd, but long story). For some reason, the way WP loads the footer doesn’t like the method of dynamic highlighting and works on some pages but not others. I’ve no idea why, but moving my nav to the header and using positioning to get it where I wanted solved the problem.
Forum: Themes and Templates
In reply to: Dynamic Highlighting & is_archive problemAnother bump to see if any of the evening crowd has an idea.
Forum: Themes and Templates
In reply to: Sidescrolling theme?The problem that would arise is that you would need to know the height of every post written. Since blogs are generally not designed in this manner, you are unlikely to find a theme already made.