lefturns190
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Author To PostsFor those interested in the question I tagged on at the end, to make the link open in a new browser window, do the following
<h2 class="title-1"><a href="<?php the_permalink() ?>" target="_blank" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
Thanks to Hedley for that. ??
Forum: Plugins
In reply to: [Plugin: FeedWordPress] I want title link to open in new windowHedley: You’re The Man! The plugin didn’t work, but your “also” did! Thanks! I knew about “_blank” but I wasn’t plugging it into the correct spot! Many gratefull thanks from a newbie!
Forum: Fixing WordPress
In reply to: Add Author To PostsThank you both very much! I wanted to change both the posts and the pages. It worked, but is there a way to make the link open a new browser window, instead of making the visitors leaving the site?
Forum: Fixing WordPress
In reply to: Add Author To PostsTo clarify, when I said “below”, I was referring to a prior post on the subject that offered a fix for this issue if using the default theme. That did not work with the iNove theme.
Forum: Themes and Templates
In reply to: Increasing the size of avatarsSaurus: Feel free to visit my site: https://3widealley.com/wordpressblog/?p=155
I think the fix listed above by instantshift will work for most themes, but for iNove, you need to do the following method:
1. Open functions.php and find get_avatar($comment, 32);
2. Change 32 to the size (pixels) you want.Real easy and works like a charm!
Thanks again for your help instantshift!
Forum: Fixing WordPress
In reply to: Increasing the size of avatarsThank You Thank You!
I swear I tried that before, but I guess I didn’t!
Forum: Themes and Templates
In reply to: Increasing the size of avatarsSaurus: No, the WD theme sets the size… Gravatars can be very large. I’ve already made them large on my site… it’s just that it killed the style code for my comments.
Forum: Themes and Templates
In reply to: Increasing the size of avatarsIs there anyway you can see where I can keep the code for styling the comment boxes and still have larger avatars?
Forum: Themes and Templates
In reply to: Increasing the size of avatarsWell that was exciting! It fixed my avatar sizes but wiped out my theme for my comment boxes! Must be pretty dang close to getting it!
Forum: Themes and Templates
In reply to: Increasing the size of avatarsThat didn’t work either. I entered it in the comments.php file for the theme…
<!-- comments START --> <ol id="thecomments"> <?php if ($comments && count($comments) - count($trackbacks) > 0) { // for WordPress 2.7 or higher if (function_exists('wp_list_comments')) { wp_list_comments('type=comment&callback=custom_comments&avatar_size=64'); // for WordPress 2.6.3 or lower } else { foreach ($comments as $comment) { if($comment->comment_type != 'pingback' && $comment->comment_type != 'trackback') { custom_comments($comment, null, null); } } } } else { ?> <?php wp_list_comments('type=comment&avatar_size=64'); ?> <li class="messagebox"> <?php _e('No comments yet.', 'inove'); ?> <?php } ?> <!-- comments END -->
Hopefully you can see where I put it in is case I did something wrong. I really appreciate you help.
Forum: Themes and Templates
In reply to: Increasing the size of avatarsI entered
<?php echo get_avatar( $comment, 64 ); ?>
After the wp_list_comments code… no change in avatar size.
Forum: Themes and Templates
In reply to: Increasing the size of avatarsInstashift: I’m new at this … should I put it right above the wp_list_comments line or somewhere else? Should I use that instead of the code I changed above, or in addition?
Forum: Themes and Templates
In reply to: Increasing the size of avatarsSearching the support blogs, I found this:
wp_list_comments(‘type=comment&callback=custom_comments&avatar_size=64’)
This did NOT work. That change was made to the themes comments.php file. Does that code also need to be added elswhere to work properly?