pizzaman
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: More prompt issueI don’t think it’s the theme. I used all 3 arguments for
the_content
and the problem went away. However, it’s still there if only one argument is used.Ex:
the_content('(more)...')
causes the <p> tags around the</a>
tag.
the_content('(more)...', false, '')
no <p> tags around the</a>
tag.Forum: Fixing WordPress
In reply to: Trouble w/Other WordPress NewsI’m having the same problem as iamiam.
It worked when I first upgraded to 2.7 then it just quit.
Forum: Fixing WordPress
In reply to: FaviconI use this. It’s the same – only different.
<link rel="shortcut icon" href="<?php bloginfo('url'); ?>/favicon.ico" type="image/x-icon" />
Forum: Requests and Feedback
In reply to: I love it!While it has a bug here and there, it’s a great step forward.
Anxiously awaiting 2.5.1.Thanks to the dev crew!
Forum: Fixing WordPress
In reply to: Stack overflow at line: 719I get the same error in IE7 with the AJAX Comments Posting plugin.
Forum: Fixing WordPress
In reply to: [IE7] Stack overflow at line: 719I get the same error with IE7 when I install/use the AJAX Comments Posting plugin.
Could be something to do with IE7 and AJAX. I dunno…
Forum: Themes and Templates
In reply to: Need help with get_posts on index.php!If I’m interpreting the codex properly, you may need to globalize $post2.
Forum: Themes and Templates
In reply to: What happened to “Template: dir” function?Never mind. It seems to be working again.
Forum: Fixing WordPress
In reply to: Stylesheet “Template” function not working in 2.2.1It is (was) a great feature allowing the use of many stylesheets with one set of code files.
I don’t understand why you say it should never have worked.
Forum: Themes and Templates
In reply to: Images left – not smiliesIf all you’re worried about is how the smileys appear in the content of your posts, use:
.storycontent .wp-smiley { border: 0; }
This assumes
.storycontent
is the class you use for the content of your posts.Forum: Plugins
In reply to: Graphic link for leave a commentHere’s what I use:
<a href="<?php comments_link('', false); ?>" title="Comment on this article"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/icon_comment.gif" alt="Comment on this article" /></a>
I put the file icon_comment.gif in an images folder in the stylesheet folder. You can change this part to suit your needs. Also, you may want to enclose this code in a div and style it to suit your needs.
Forum: Fixing WordPress
In reply to: How to Change text in Comments Tooltip, please?This code is usually found in your index.php file. It can also be used in any other file where “the loop” is used. Where you put it is up to you but it must be inside the loop.
Check out the codex in the “template tags” section.
Forum: Fixing WordPress
In reply to: How to Change text in Comments Tooltip, please?Something like:
<a href="<?php comments_link('', false); ?>" title="Comment on this article">Comment</a>
Forum: Requests and Feedback
In reply to: am i the only person who doesn’t like the concept of widgets?Widgets???
Naaa…..
Forum: Developing with WordPress
In reply to: Get rid of junk in my DbI was afraid someone would say that.
Thanks Michael. Backup in progress…