fuddes
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Retweet Anywhere] Exclude the Retweet button on the home page?What a joke. You have to visit his website just to get the Twitter API or the PHP shortcode, and now that his website isn’t around anymore, his plugin is worthless.
Forum: Plugins
In reply to: threded comments in comments-popup.phpI’ve always been amazed that with such talent, WordPress has been so lazy about things like making popup comments a simple option in the settings.
I can understand why they didn’t add nesting to popup comments, but I wish they had at least made it so nested ones would have the @name format in popup mode so you could still tell they were aimed at someone.
Forum: Plugins
In reply to: Fix comment and category counts after importI’m getting the following errors:
Warning: Unexpected character in input: '\' (ASCII=92) state=1 in /[removed]/commentfix.php on line 2 Parse error: syntax error, unexpected T_STRING in /[removed]/commentfix.php on line 2Anyone know how to fix this? There isn’t a “\” character in the script.
Forum: Plugins
In reply to: Default image insertion codeBump.
I’d also like to know where to find the default code inserted by the image uploader/browser in the editor.
Forum: Plugins
In reply to: Category icons in sidebarOkay, this ridiculous support forum won’t post the code correctly, even with the code tags and the backticks. In the code above, the “n” after each $link and the “t” before each
<li>should have a backwards slash in front of them.Forum: Plugins
In reply to: Category icons in sidebarThanks, alphaoide. You were very close. Here’s what I did. I named all my category icons the same name as the categories they represent. Then I added an image tag, using the category variable instead of an image name. The original code (around line 361) is:
$thelist .= "t<li>$linkn";Change it to the following, substituting the location of your category images and the image type (.gif, .jpg, etc):
$thelist .= "t<li><img src="http://YOURDOMAIN.com/$category->cat_name.gif"> $linkn";Forum: Fixing WordPress
In reply to: An alternative to <?php the_ID(); ?>It works! Thank you so much. I’m sure many other DotComments users will find this thread very helpful.
Forum: Fixing WordPress
In reply to: An alternative to <?php the_ID(); ?>Afraid not. It works if I substitute the actual post number,
$my_ID = 142;but not withthe_ID()in there. So I know it’s not a typing or coding error on my part. It seems like there just has to be another way.