titanium_geek
Forum Replies Created
-
Forum: Themes and Templates
In reply to: comment link not showing on category pagesah sorry, wordpress forums newbie. 🙂 Thanks again!
Forum: Themes and Templates
In reply to: comment link not showing on category pageswhat’s the “comments_popup_link” mean? Not for a popup window?
Ah. Only for popup window if comment_popup_script() is used.http://codex.ww.wp.xz.cn/Template_Tags/comments_popup_link
Thanks!
I did it and it worked. 🙂
Forum: Themes and Templates
In reply to: WordPress upgrade overwrites my custom themein other words, Appearance-Themes-choose new theme- choose the right theme (ie the renamed twenty-ten theme)
Forum: Themes and Templates
In reply to: WordPress upgrade overwrites my custom themeAnd then you need to change your settings so that it’s using your-theme-name-not-twentyten-or-other-existing-theme-name theme not twenty-ten.
🙂
Forum: Themes and Templates
In reply to: comment link not showing on category pagesA new wrinkle:
I’ve noticed that on the index page there is no COMMENTS word displayed (instead: “Leave a Comment” etc)but on the category page (example: http://www.creativehedgehog.com/?cat=19) the word COMMENTS is displayed instead.
Forum: Themes and Templates
In reply to: comment link not showing on category pages<?php get_header(); ?> <div id="content"> <div id="menubar"> <?php include("menubar.php"); ?> </div> <div id="contentleft"> <div class="navigation"> <div class="alignleft"> <?php previous_post_link('← %link') ?> </div> <div class="alignright"> <?php next_post_link('%link →') ?> </div> </div> <br class="clear" /> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1> <div class="postinfo"> <em>Filed Under Category <?php the_category(', ') ?> by <strong><?php the_author() ?></strong></em> </div> <?php the_content(__('Read more'));?><div style="clear:both;"> </div> <div class="taginfo"> <?php the_time('F j, Y'); ?> | <?php edit_post_link('(Edit)', '', ''); ?> | <?php the_tags('Tags: ', ', ', '<br />'); ?> </div> <!-- <?php trackback_rdf(); ?> --> <h3><b>COMMENTS</b></h3> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p><?php endif; ?> <?php posts_nav_link(' — ', __('« go back'), __('keep looking »')); ?> </div> <?php include(TEMPLATEPATH."/sidebar.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?>Forum: Themes and Templates
In reply to: 3 column to 4 column themedude it’s a forum, not a chat site. People might be able to help in another time zone to you.
Try copy/pasting the existing sidebar.
This will be a CSS thing, so google “CSS x column layout ” for more (where x is the number of columns that you’re looking for)