kohaku
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Archive display problemWell, that kind of helped, but now when I click on the month to see the posts, it just takes me back to the same page with the list of months and categories.
Forum: Fixing WordPress
In reply to: Archive display problemOh… maybe I should switch the coding and see what happens.
Thanks.
Forum: Fixing WordPress
In reply to: can’t retrieve/reset passwordThere’s a plugin…
If you have access to FTP, you might try it. It worked for me when I was in this pinch.
https://www.village-idiot.org/archives/2007/05/22/wp-emergency-password-recovery/
Forum: Fixing WordPress
In reply to: Archive display problemMy archives.php is the template file. Here is the main chunk:
<div id="content"> <?php include (TEMPLATEPATH . '/searchform.php'); ?> <h2>Archives by Month:</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> <h2>Archives by Subject:</h2> <ul> <?php wp_list_categories(); ?> </ul> </div>
My archive.php is the display coding for how it looks, layout wise.
I don’t know what the issue would be.
Forum: Fixing WordPress
In reply to: Single post on front page, multiple in search results?Oh, I forgot to mention…
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=1&paged=$page"); ?>
I used query_post to get the single post to work. It has to go before the loop.
Forum: Fixing WordPress
In reply to: Single post on front page, multiple in search results?Arwennn –
I think I figured it out. I don’t know what your structure is, but this should work… I hope. At least, it worked for my site.
I have these pages set up to help:
archives.php
archive.php
search.php
post.php
single.phpMy index is set up as:
<div id="rap"> <?php get_header(); ?> <div id="main"> <div id="content"> <?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("showposts=1&paged=$page"); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="post"> <?php require('post.php'); ?> <?php comments_template(); // Get wp-comments.php template ?> </div> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> <p> <div class="alignleft"><?php next_posts_link('« Previous') ?></div> <div class="alignright"><?php previous_posts_link('Current »') ?></div> </p> </div> <?php get_sidebar(); ?> <?php get_footer(); ?> </div> </div>
That makes the index/front page show only one post. It also prevents the previous/next post links continue to work.
My post.php lets the title of the entry be linked and code for the actual entry, but nothing more.
archive.php, archives.php, search.php all do multiple posts (on excerpt, of course) as long as Settings -> Reading has been set to more than 1. I’ve used 7 for testing purposes.
I use single.php as a non-linked title post page.
I really hope that helps.
Forum: Fixing WordPress
In reply to: Single post on front page, multiple in search results?Would this require using multiple loops to achieve multiple posts on search/archive pages?
Or would changing the Reading option under settings to a number then messing with the loop on the index page make it work better?
Forum: Fixing WordPress
In reply to: How to use redirection to solve my problem.Are they both using the atheist.nu as their main domain?
If that’s the case then putting:
WordPress address: atheist.nu/tech
Blog address: https://larrinski.orgshould work if your domain has properly propagated with the right nameserver DNS.
Forum: Fixing WordPress
In reply to: How to use redirection to solve my problem.Hmm…
If larrinski.org is just a domain name and you want it to point to atheist.nu/tech, then it might be a nameserver DNS issue that you’ll need to resolve with your domain provider.
If /tech is hosted under larrinski.org, then I don’t really know what the problem is.
So I guess the real question is, are /blog and /tech on the same hosting? It sounds like it. And if that’s the case then putting larrinski.org/tech isn’t going to work because it isn’t correct.
I’d like to help you sort it out though!
Forum: Fixing WordPress
In reply to: How to use redirection to solve my problem.Are you logged into the /tech blog?
That makes a huge difference.
Under Settings -> General, there is WordPress address & Blog address.
The Blog address would be larrinski.org and the WordPress address is the directory that your WP install is located in. So therefore, the wordpress address would be the full address to /tech.
Forum: Fixing WordPress
In reply to: How to use redirection to solve my problem.Under settings you might want to try:
WordPress address: atheist.nu/tech
Blog address: https://larrinksi.org
That should help.
Forum: Fixing WordPress
In reply to: Single post on front page, multiple in search results?I’m looking for the same thing. If anyone could help that would be wonderful.
Forum: Fixing WordPress
In reply to: Customize “Protection’ Notifcation Pagewp-includes/post-template.php
The line to edit is at the very bottom of the file, that is, if you are looking to change the text.
If you want to change the look, then that’s a theme/CSS issue.
I was having this problem too. I hope it helps.
Forum: Fixing WordPress
In reply to: Password retrieval issuesI don’t have FTP access either. I should have mentioned that.
Forum: Installing WordPress
In reply to: 2.2 Dashboard layout error on Firefox (not displayed OK)This is the same problem I’m having. But only with one site. The others are fine.