doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding Login Meta to footermariacharmer,
Because all WordPress blogs are different it’s impossible to accurately let you know where that code is located. My best guess would be to locate this code within the sidebar.php, if you have one.
Please let us know what theme you are using.
Forum: Fixing WordPress
In reply to: Good news – and a questionfinkel.for,
WordPress 3.01 is multisite ready: http://codex.wordpress.org/Create_A_Network
Forum: Fixing WordPress
In reply to: Remove Extra Sizes for Uploaded ImagescraZy18gurl,
You can set these additional sizes set to zero by visiting Settings > Media. Though this does not have nine variations, so I’m not sure where all of these are derived from. It may be somehow built into your theme’s functions.php.
Forum: Fixing WordPress
In reply to: Search blogrollRuriko,
Search Unleashed doesn’t have this feature either. You might be out of luck on this one.
Forum: Fixing WordPress
In reply to: Symbols appearing in RSS feedlukejamesquincymcgrath,
I’ve seen this before with the http://www.AtariAge.com feed. It’s essentially a quote styling issue on your end. Make sure the quotes are not being copied from Word or another program and that they are typed directly into the WordPress text editor. This has been my experience.
You might also try the following plugins:
No Curly Quotes
http://wordpress.org/extend/plugins/no-curly-quotes/Unfancy Quote:
http://wordpress.org/extend/plugins/sem-unfancy-quote/Forum: Fixing WordPress
In reply to: Possible to add a password to a SPECIFIC post for editing?menuman,
Wouldn’t this fall under how the users are assigned capabilities. For example, an Author is only allowed to edit their posts. http://codex.wordpress.org/Roles_and_Capabilities
Forum: Fixing WordPress
In reply to: Structured postsMHalukK,
It sounds like you need Magic Fields: http://wordpress.org/extend/plugins/magic-fields/ and for the most part this can be done.
Forum: Fixing WordPress
In reply to: Search blogrollRuriko,
Have you tried the Search Everything plugin? I’m not going to promise anything but it’s worth a shot. http://wordpress.org/extend/plugins/search-everything/
Forum: Fixing WordPress
In reply to: Links not workingbsprowl,
The link in the original post appears to be working now. I’ve looked at your site and I’m not sure which link isn’t working for you.
Forum: Fixing WordPress
In reply to: How to move comments link next to 'by author'?t-p,
Try taking this:
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>and adding next to:
<?php twentyten_posted_on(); ?>Like this:
<?php twentyten_posted_on(); ?> | <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>This code is located on loop.php.
Forum: Fixing WordPress
In reply to: Anonymous comments – WP2.02 – Scary right?Dave Kaufman,
I am an admin using 3.01 and I can’t even see posts held for moderation. I’m not saying this is 100% accurate, just an observation.
Forum: Fixing WordPress
In reply to: Getting the current users display nameWeJ00,
Take a look here: http://codex.wordpress.org/Function_Reference/get_currentuserinfo
Forum: Fixing WordPress
In reply to: Posts won't display on homepagethenixus,
Please post the code to the malfunctioning loop.
Forum: Plugins
In reply to: [Limit Post Add-On] [Plugin: Limit Post Add-On] Update for WP 3, pleaseWendihihihi,
Try disabling all other plugins and reactivating Limit-Post. I am currently using this plugin with WordPress 3.0.1 and have no problems which is why we haven’t updated it.
Forum: Fixing WordPress
In reply to: Meta at end of posts is on two different lines?bigez,
Add your font size to both .alignright and .alignleft.
.alignright { font-size: 10px; float: right; margin: 0 0 8px 8px; }