fmofmpls
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Comment link missing?Thanks Lisa that does help some. I’m almost there, but still need a little more tweaking.
I couldn’t really find the exact code structure you instructed me to look for, so I inserted the comment code where it looked to me to be the most similar. I ended up with the comments link appearing above the post title; not horrible, but probably better placed at the end of the post.
Here’s my loop.php code via Pastebin – http://pastebin.com/VA5q7jbJ
P.S. I inserted the comment code on line 50.Here’s a screen grab of how the comments link is appearing on my blog – http://i52.tinypic.com/9hutye.jpg
A very big thank you for assisting me with this!
Forum: Themes and Templates
In reply to: Comment link missing?Without sounding greedy, what I’d really like to see in a perfect world is for the comments link to show as well as a “leave a comment” link to show at the end of each and every post.
I would be eternally grateful for further assistance!
Best, Terry.
Forum: Themes and Templates
In reply to: Comment link missing?Thanks Lisa for the great support. I took your advice and placed the code at the very end of loop.php
It seemed to work for the first post, but didn’t show itself with the second (most recent) post? Any idea on where this should be placed within the file so it will remain consistent?
Here’s my loop.php file with backticks included this time.
[code moderated - for any code longer than 10 lines, please use the http://pastebin.com/ as explained in http://codex.ww.wp.xz.cn/Forum_Welcome#Posting_Code ]
Forum: Themes and Templates
In reply to: Comment link missing?Thanks for the reply! Can’t find it anywhere in the index.php file.
Here’s what it looks like:
<?php
/**
* The xhtml1.0 transitional header for our theme.
*
*
* @package WordPress
* @subpackage Raindrops
* @since Raindrops 0.1
*/
get_header(“xhtml1”); ?>
<?php if(WP_DEBUG == true){echo ‘<!–‘.basename(__FILE__,’.php’).'[‘.basename(dirname(__FILE__)).’]–>’;}?><div id=”yui-main”>
<div class=”yui-b”>
<?php
/**
* Widget only home
*
*/
if ( is_home() and is_active_sidebar(‘sidebar-3’) ) {
echo ‘<div class=”topsidebar”>’.”\n”.’- ‘;
dynamic_sidebar(‘sidebar-3’);
echo ‘‘.”\n”.'</div>’.”\n”.'<br class=”clear” />’;
} ?><div class=”<?php echo raindrops_yui_class_modify();?>” id=”container”>
<div class=”yui-u first” <?php is_2col_raindrops(‘style=”width:99%;”‘);?>>
<?php get_template_part( ‘loop’, ‘default’ );?>
<br style=”clear:both” />
</div>
<div class=”yui-u”><?php if($rsidebar_show){get_sidebar(‘extra’);} ?></div>
<?php //add nest grid here?>
</div>
</div>
</div>
<div class=”yui-b”> <?php get_sidebar(‘default’); ?></div>
</div>
<?php get_footer(); ?>