rich4747
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Parse error: syntax errorI couldn’t find anything like that. By the way, here’s the pastebin link to the file:
http://wordpress.pastebin.ca/1770964Forum: Fixing WordPress
In reply to: Sidebar Login not appearingForum: Fixing WordPress
In reply to: Sidebar Login not appearingLogin and logout redirects are blank.
Forum: Fixing WordPress
In reply to: Add link for new posts?It’s a password only site, but I made a temporary password for you:
user name 0127guest
password 0127Forum: Fixing WordPress
In reply to: Profile photo?One more thought. I’ve pasted my author.php below. Could it be placed somewhere on that page?
<?php
/* Arclite/digitalnature */
get_header();
?><!– main wrappers –>
<div id=”main-wrap1″>
<div id=”main-wrap2″><!– main page block –>
<div id=”main” class=”block-content”>
<div class=”mask-main rightdiv”>
<div class=”mask-left”><!– first column –>
<div class=”col1″>
<div id=”main-content”><?php
// global $wp_query;
// $curauth = $wp_query->get_queried_object();if(isset($_GET[‘author_name’])) : $curauth = get_userdatabylogin($author_name); else : $curauth = get_userdata(intval($author)); endif;
?><h1><?php echo $curauth->display_name; ?></h1>
<div class=”profile”>
<div class=”avatar left”><?php echo get_avatar($curauth->user_email, ‘128’, $avatar); ?></div>
<div class=”info”>
<p>
<?phpif($curauth->user_description<>”): echo $curauth->user_description;
else: _e(“This user hasn’t shared any biographical information”,”arclite”);
endif;
?>
</p>
<?php
if(($curauth->user_url<>’http://’) && ($curauth->user_url<>”)) echo ‘<p class=”im”>’.__(‘Homepage:’,’arclite’).’ user_url.'”>’.$curauth->user_url.’</p>’;
if($curauth->yim<>”) echo ‘<p class=”im”>’.__(‘Yahoo Messenger:’,’arclite’).’ yim.'”>’.$curauth->yim.’</p>’;
if($curauth->jabber<>”) echo ‘<p class=”im”>’.__(‘Jabber/GTalk:’,’arclite’).’ jabber.'”>’.$curauth->jabber.’</p>’;
if($curauth->aim<>”) echo ‘<p class=”im”>’.__(‘AIM:’,’arclite’).’ aim.'”>’.$curauth->aim.’</p>’;
?>
<div class=”clear”></div>
</div>
<div class=”clear”></div>
</div><?php if (have_posts()): ?>
<h1><?php printf(__(‘Posts by %s’, ‘arclite’), $curauth->display_name); ?></h1>
<?php while (have_posts()) : the_post(); ?>
<div id=”post-<?php the_ID(); ?>” <?php if (function_exists(“post_class”)) post_class(); else print ‘class=”post”‘; ?>>
<h3 id=”post-<?php the_ID(); ?>” class=”post-title”>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></h3>
<!– displays the user’s photo and then thumbnail –><small><?php the_time(__(‘l, F jS, Y’,’arclite’)) ?></small>
<p><?php the_tags(__(‘Tags:’,’arclite’).’ ‘, ‘, ‘, ‘
‘); ?> <?php printf(__(‘Posted in %s’,’arclite’), get_the_category_list(‘, ‘));?> | <?php edit_post_link(__(‘Edit’,’arclite’), ”, ‘ | ‘); ?> <?php comments_popup_link(__(‘No Comments’,’arclite’), __(‘1 Comment’,’arclite’), __(‘% Comments’,’arclite’)); ?></p>
</div>
<?php endwhile; ?><div class=”navigation” id=”pagenavi”>
<?php if(function_exists(‘wp_pagenavi’)) : ?>
<?php wp_pagenavi() ?>
<?php else : ?>
<div class=”alignleft”><?php next_posts_link(__(‘« Older Entries’,’arclite’)) ?></div>
<div class=”alignright”><?php previous_posts_link(__(‘Newer Entries »’,’arclite’)) ?></div>
<div class=”clear”></div>
<?php endif; ?>
</div><?php else : ?>
<p class=”error”><?php _e(‘No posts found by this author.’,’arclite’); ?></p>
<?php endif; ?></div>
</div>
<!– /first column –>
<?php get_sidebar(); ?>
<?php include(TEMPLATEPATH . ‘/sidebar-secondary.php’); ?></div>
</div>
<div class=”clear-content”></div>
</div>
<!– /main page block –></div>
</div>
<!– /main wrappers –><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Profile photo?This still does not work for me. I don’t understand a lot about the coding, so I’m sure it would be easier if I did.
However, I’d still like to make this work. Is there a plugin with this functionality that would be more geared to a newbie like me?
Thanks.
Forum: Fixing WordPress
In reply to: Add link for new posts?Sribharath,
For some reason, the link appears on every page except for the page where my posts appear. How can I make the link appear on that page as well? Thanks.Forum: Fixing WordPress
In reply to: Profile photo?Thanks for the info. I’m new to this — which page do I add that line (or lines) to? (By the way, I did read the plugin page and followed the directions there, but it didn’t work for me.)
Forum: Fixing WordPress
In reply to: Add link for new posts?Thanks, but which widget do I add to allow people to create a new post?
Forum: Fixing WordPress
In reply to: Add link for new posts?Thanks. I can make this work for individual pages, but how can I make it show up on every page without adding this code to each page separately?
Forum: Themes and Templates
In reply to: How to center header imageThanks.
Forum: Themes and Templates
In reply to: How to center header imageThanks! That’s exactly what I was looking for.
Now, how can I add text to go with the logo in the header?