iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Varying show-post number between viewsTake a look at the following plugin:
http://rephrase.net/miscellany/05/perpage.phps
sounds like it might do what you need.Forum: Fixing WordPress
In reply to: Need help with publishing info for articles!I think it is one of the ‘time since’ plugins. A quick search will turn a few avenues to explore and this post.
Forum: Fixing WordPress
In reply to: Conditionally displaying content for logged in userIf that doesn’t work try:
<?php if ( $user_ID ) : ?>
whatever you want to display to logged in people
<?php endif; ?>Forum: Fixing WordPress
In reply to: Read More of Selected Category<?php the_category() ?>outputs the category of the current post, so you want something like
Read more from <?php the_category(',') ?>
(the ‘,’ will place a comma between multiple categories.Forum: Fixing WordPress
In reply to: Listing Post on certain category on sidebarTry replacing
<?php the_title(); ?>with
<a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a>Forum: Fixing WordPress
In reply to: reading blogs via PDATry wp-mobile.
Forum: Fixing WordPress
In reply to: Dashboard Not UpdatingMaybe the problem is the same as described in big black letters about 3 posts above…..
Forum: Fixing WordPress
In reply to: WordPress database errorRea – check your templates for tags that should be inside the loop that are outside it.
Myword – have you double-checked wp-config?
http://codex.wordpress.org/Editing_wp-config.phpForum: Fixing WordPress
In reply to: updated linksIt is still doable with 1.5.x and no extra plugins.
See here though it may not work and you need access to you database via mySQL or similar.Forum: Fixing WordPress
In reply to: where are my comment quicktags?There are no quicktags for comments in the default installation.
Plugins:
http://www.asymptomatic.net/wp-hacks
http://aboutme.lmbbox.com/lmbbox-plugins/lmbbox-comment-quicktags/Forum: Fixing WordPress
In reply to: Users can’t leave commentsOptions > general > membership > Users must be registered and logged in to comment?
Forum: Fixing WordPress
In reply to: Comment settings not workingSomething from here maybe?
http://codex.wordpress.org/Plugins/Spam_Tools
I use SK2 so haven’t tried out most of them.Forum: Fixing WordPress
In reply to: Comment settings not workingjaypee – Spam Karma2 bypasses the admin options. More information from drDave himself:
http://unknowngenius.com/blog/wordpress/spam-karma/dev#comment-9010Forum: Fixing WordPress
In reply to: fixing 2 posts having same url linkThat should be all you need to do as far as I know. You could try deleting .htaccess and regenerating it.
You are changing the slug not the title aren’t you? (just a thought) and if you go back to a post (on the edit page) whose slug you have changed, is it still what you have changed it to?Forum: Fixing WordPress
In reply to: Adding commentsAre you are missing the following:
comments_popup_linkand/or
comments_template?
Check the classic theme for ideas how to use them.