iand
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Updated LinksAs far as I know you need have the ‘track update links’ box (options > misc) ticked and to run update-links.php as a CRON job.
Forum: Fixing WordPress
In reply to: Moving a Topic: index page to new pageI think that will just show a list of category titles. Check out http://codex.wordpress.org/The_Loop “Exclude Posts From Some Category ”
Forum: Fixing WordPress
In reply to: MathML, Amaya, Mozilla, IE MathPlayerI don’t know if this will hep but there is a MathML plugin here: http://www.asymptomatic.net/_wp-hacks (at the bottom of the page).
Forum: Themes and Templates
In reply to: Showing admins in different textForum: Everything else WordPress
In reply to: What Track LinksΓ’β¬β’ Update Times option do?As I understand it, if the sites in your linkroll ping ping-o-matic when they update, then when you hover over the link, the update time will display. You can also use it to append or prepend a symbol next to the link to show that it has been updated.
Forum: Themes and Templates
In reply to: WP v1.5 Theme Competitiondoesn’t using the tag for a plugin that does not exist cause it to break? I’ve taken to calling functions by
<?php if (function_exists('wp_theme_switcher')) wp_theme_switcher(); ?>That way, no plugin – no error. A little OT but anyway.Forum: Fixing WordPress
In reply to: Hilite comment if its adminI use my comments on my blog. It works off your name and URI so works recursively. There is also an ‘our comments’ plugin on the same site which works for multiple users.
Forum: Plugins
In reply to: Exhibit QuestionYou want this post: http://wordpress.org/support/topic.php?id=8501#post-124322
Forum: Plugins
In reply to: Anyone try Photon with 1.5 yet?Is the upload path
http://natewarner.com/blog/wp-contentspecified in the Photon Setings? I think it was blank or /photonimagefolder for 1.2.Forum: Requests and Feedback
In reply to: POsting links in wp1.5 not xhml valid???You have
<p>tags within<a>tags, which is not valid.
<p><a href="http://video.google.com/"></p>should read
<p><a href="http://video.google.com/"></a></p>
BTW – everything is up against the left margin in XP Pro/IE6.Forum: Fixing WordPress
In reply to: How to use Gravatar?!Got it displaying it least. CSS is not my forte though so I can’t be of much help there I’m afraid. You probably need something like .post-footer img {clear:both} or something. I really don’t know though. Good luck! π
Forum: Fixing WordPress
In reply to: How to use Gravatar?!Find this in comments.php:
<p class="post-footer" style="margin-bottom: 0px; padding-bottom: 0px;">By <?php comment_author_link() ?> on <?php comment_date('m.d.y') ?> <?php comment_time() ?> <?php edit_comment_link(__("e"), ''); ?>
</div>Change it to:
<p class="post-footer" style="margin-bottom: 0px; padding-bottom: 0px;">By <img src="<?php gravatar() ?>" alt="" /></img><?php comment_author_link() ?> on <?php comment_date('m.d.y') ?> <?php comment_time() ?> <?php edit_comment_link(__("e"), ''); ?>
</div>
See if that works.Forum: Fixing WordPress
In reply to: How to use Gravatar?!My last suggestion for now (its 1am) – View the source on your comments page – see if anything shows up – that will tell you if the plugin is working. Also I suggest putting the call as
<?php gravatar("R", 40, "http://path to no gravatar image.jpg", "FF0000"); ?>That way something should appear.
The URI of your site might help too.Forum: Your WordPress
In reply to: ne9enmoshu – I’ll have to look into that when I am next on a windows machine, thanks for the heads-up.
STPP – I’m on Safari 1.2.4 (v125.12) too. Feel free to have a look at my css (I think it is the default though) here.Forum: Fixing WordPress
In reply to: How to use Gravatar?!I don’t think the
</img>is necessary. Have you got the plugin installed and activated properly?