ericlachance
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bug: Static pages do not appear in the Manage PagesYup, they are definately static in the database, that is one of the things I checked at first. They show up as static on wordpress itself (under “Pages” in the sidebar), and when I modify them from the link in the page itself, the admin page sais it’s a static page I’m editing. The only thing that doesn’t work is the page list in Manage Pages.
Forum: Fixing WordPress
In reply to: Bug: Random Localization file loads (Fr/En alternate)I’ve determined that this was only on my own computer, and only in IE… I have no clue what the heck could be happening, but I’ll live with it if it’s only me that has the problem 🙂
Forum: Fixing WordPress
In reply to: Author.php page does not show informationNote:
http://www.monamouchtim.com/author/tiff/Actually works… but not the others… 😐
Forum: Fixing WordPress
In reply to: Subject Line QuestionWell that’s a kicker, if you want to do that you’ll require (from what I see) a lot of javascript, and a certain knowledge of AJAX. I suggest you google it for more details. You can, of course, view the source code and try to figure a bit out from that.
Forum: Fixing WordPress
In reply to: Author.php page does not show informationHere’s the full code. The page is normally called up using http://www.monamouchtim.com/author/lucas/ (or another username, which translates to http://www.monamouchtim.com/?author_name=lucas .
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<!-- This sets the $curauth variable -->
<?php
if(get_query_var('author_name')) :
$curauth = get_userdatabylogin(get_query_var('author_name'));
else :
$curauth = get_userdata(get_query_var('author'));
endif;
?><h2><?php echo $curauth->user_nickname; ?>'s Profile:</h2>
<?php echo $curauth->user_description; ?><h2>Posts by <?php echo $curauth->user_nickname; ?>:</h2>
<ul>
<!-- The Loop -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>">
<?php the_title(); ?></a>,
<?php the_time('d M Y'); ?> in <?php the_category('&');?>
</li><?php endwhile; else: ?>
<p><?php _e('No posts by this author.'); ?></p><?php endif; ?>
<!-- End Loop -->
</ul>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>