ColdForged
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Header text and graphic aligned at opposite endsWhat isn’t correct about the appearance now? Do you want the image to appear farther to the right?
Forum: Themes and Templates
In reply to: comments link classThe way you stated it implied that the only way to apply a style to a link in any way was by making the link have a class and WP allows no way to do this, hence the “need” for your modification to the core functionality. Admittedly, if you’re trying to fit your existing stylesheet into WordPress without modifiying the stylesheet, what you say is true, but in terms of the seemingly accepted WordPress way surrounding the link with a styleable div or span it was not true.
Of course, your answer directly addressed the original poster’s actual question so it’s all good anyway.
Forum: Installing WordPress
In reply to: Problem with login administrator v. 1.5Which username and password (don’t post it) are you using? You should be using the “admin” username and the password given to you when you installed it.
Forum: Installing WordPress
In reply to: Problem with login administrator v. 1.5Did you follow the install directions? Did you fill in the appropriate information in the wp-config.php file?
Forum: Themes and Templates
In reply to: Showing admins in different textWhere do you mean, in the comments?
Forum: Installing WordPress
In reply to: Problem with login administrator v. 1.5We’ll need a whole lot more information to try to help. Are you upgrading from a previous version? Have you performed the install.php step?
Any additional information you can provide would be helpful.
Forum: Installing WordPress
In reply to: Installation problem – Warning: UnknownI don’t know how you put the files on the server, but it sounds as though the web server process doesn’t have permission to read the install.php file. Check to make sure that the permissions have been set correctly — read permission for everybody — and try again.
Forum: Fixing WordPress
In reply to: Way to allow registered users to “preview” drafts?Obviously requires editing core files. I’d add a function called
user_can_preview_post()based on the functionuser_can_edit_post()inwp-includes/functions_post.php. Copy it verbatum and change the line that says:|| ($author_data->user_level > $post_author_data->user_level)to be
|| ($author_data->user_level == $post_author_data->user_level)Then edit
wp-admin/post.phpand search for thecase 'edit':section of the code. Change the line that reads:if ( !user_can_edit_post($user_ID, $post_ID) )to be
if ( !user_can_preview_post($user_ID, $post_ID) )It’s not perfect as they will still have “Publish”, “Save”, “Save and Continue Editing” buttons (yes, you could get rid of them with similar code in the
edit-*.phpfiles). They won’t be allowed to perform those actions — WP will error out — but it isn’t elegant if you catch my drift.What are the parameters you’ve specified in the wp-config.php file (don’t post the password)?
Forum: Themes and Templates
In reply to: what once was kubrick…Very nice, I liked it from the first time I saw it :).
Forum: Themes and Templates
In reply to: Float and corresponding wrap not working?You’re most welcome.
Forum: Fixing WordPress
In reply to: WordPress SQL Error, on the feedUnder the “Syndication Feeds” subheading, by the way.
Forum: Fixing WordPress
In reply to: WordPress SQL Error, on the feedGo to your “Reading” tab of the options and make certain that you have a valid number set for “Show the most recent: posts” field.
Forum: Everything else WordPress
In reply to: an idea how to make money from your blog..That’s essentially the Slashdot method.
1. Create blog.
2. Require PayPal transaction to get password for content.
3. ???
4. Profit!As soon as you find the missing step come back and let us know :).
Forum: Themes and Templates
In reply to: comments link classNo, wrapping a DIV around the above doesn’t apply the class to the text, but that doesn’t change the fact that you can create a selector using that div to apply a style to the tag.
.comments a {
styles go here.
}