systemofajon
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: WordPress: search engine friendly?Googlebots have been crawling over my site more than I thought they would…However, the Inktomi Slurps (Yahoo!) have been going crazy over my blog this month, with four or five times more hits from them.
I am a big fan of the simple, short “?p=000” URL.
Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1IanD: Thanks. 🙂
In general, though, it seems that WP 1.5.1 is rather riddled with bugs. This may just be normal (I wasn’t really paying attention to mosquito.ww.wp.xz.cn or these forums when I upgraded to 1.5)…but I’m wondering when these fixes (the RSS feed in particular) are corrected, are they going to be packaged with WP 1.5.1, or is it going to be this way until the release of 1.5.2? Matt?
Forum: Fixing WordPress
In reply to: Upgrade 1.5 > 1.5.1Once the RSS feed bug has been corrected, is it going to be fixed in 1.5.1, or are we going to have to (impatiently) wait for 1.5.2? For that matter, what about the other significant bugs mentioned? The answer to that question is really going to make the decision on when I upgrade.
Forum: Themes and Templates
In reply to: Moving the comments linkThe
display: inlinedid the trick beautifully. Thanks a ton, Root! 😀Forum: Themes and Templates
In reply to: Moving the comments linkAaaah…that sounds like that is the culprit to me. Is anyone aware of a way to cancel that with CSS, or another way to keep the date text size the same without using the h2 tags?
Forum: Themes and Templates
In reply to: Moving the comments linkArggghhh….Somehow the PrtScn key isn’t working on this new keyboard. Sorry! Let me try to explain it better. I’m trying to do, for all practical purposes, what Michael has done at Binary Bonsai. Instead of the comment number and link to the comments being beside the title, though, I want it beside the date. For my purpose, I don’t want any titles.
I took the code for the comments and put it right below the
the_datecode. The result:<?php
the_date('','<h2 class="entrydate">','</h2>');
?><?php
$comments_img_link = '<img src="' . get_stylesheet_directory_uri() . '/images/comments.gif" title="comments" alt="*" />';
comments_popup_link('No Comments', $comments_img_link . ' 1 Comment', $comments_img_link . ' % Comments');
?>The thing is, the result has a line break in it. Thus:
“May 1 2005
No Comments”Intsead of it being “May 1 2005 No Comments”.
There’s nothing obvious to me that needs to be corrected, such as a
<p>or<br>, so I am at a complete loss. That’s why I’ve come here. 😀Forum: Themes and Templates
In reply to: Rin (fka Manji2) ReleasedRoot: It seems like every other theme or plugin uses a div id such as
div id="rap", where as Rin usesdiv id="container", or whatever the “rap” alternative (if I was not such an idiot and could figure out what the alternative was on my own, I’d be much better off, I suppose) is.I realize that there is not a set standard…but so far everything else that I have looked at has used the same div id’s and such…
Macmanx: Ah! I thought I had tried to use the WP Contact Form plugin with Manji2 and that it didn’t work. Just tried it again and it works perfectly.
The other plugin I had in mind, the subscribe2 plugin, however, still doesn’t work. As far as I can tell (and Scott told me this as well), the problem seems to lie in the different div ids.
Forum: Themes and Templates
In reply to: Rin (fka Manji2) ReleasedI wish the div ids were more standard. It makes using plugins such as the WP ContactForm or subscribe2 a hassle I gave up on. Yes, I’ve already used the Firefox plugin, and I really tried to figure it all out….
but I failed.
Forum: Fixing WordPress
In reply to: Separating Link CategoriesI’ve tried just using “get_links_list” and using “get_links_list(‘name’)”, but neither work. For the “get_links_list”, nothing but messing up the design happens. When I tried the “get_links_list(‘name’)” line, I got a “Parse error: parse error, unexpected ‘(‘ in /home/jon/public_html/testblog/wp-content/themes/manji2/sidebar.php on line 14” error message.
Forum: Fixing WordPress
In reply to: question about Manji2 1.0 BetaI’m no programmer, and don’t understand PHP at all, but this is what I added the following in my blog (in sidebar.php):
<li><h2><?php _e('Archives'); ?></h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</li>