varsity
Forum Replies Created
-
Forum: Plugins
In reply to: OpenID login failed: Invalid openid.mode \’\’I get the same error with WP2.8 and OpenID 3.2.2, but with XRDS-Simple disabled.
Does anyone posting here have GMP support on their server? I don’t, and that stops the plugin from acting as a provider. It might be what’s stopping it from acting as a consumer too.
(You can check for GMP at Settings > OpenID > Troubleshooting > “Toggle More/Less”.)
Forum: Plugins
In reply to: Show only the first three tagsThis should do the job:
<?php $count = 0; $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { $count++; if ($count <= 3 ) { echo '<a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a> '; } } } ?>
Forum: Plugins
In reply to: Show only the first three tagsYes: use
get_tag_link()
.Forum: Plugins
In reply to: Show only the first three tagsI’m pretty sure that both of those suggestions will display all of the tags.
Forum: Requests and Feedback
In reply to: [Plugin: WP-OpenID] OpenID overrides website in profile?You can add a link elements to your homepage’s header:
<link rel="openid.delegate" href="[username].pip.verisignlabs.com" />
That ought to do do it with a redirect. ??
Forum: Fixing WordPress
In reply to: Exclude DIV from RSSJust what I need. ?? Only I’m using
span
instead ofdiv
; I’ve tweaked the code to account for this myself, but a better solution would be adding another variable that lets you specify an element to exclude, or if left blank filter everything.Forum: Fixing WordPress
In reply to: DIV and Paragraph beheaver in 2.1Solution: delete line 66 (and 67, if you used the fix linked above) of
wp-includes/formatting.php
. This might break some other stuff, but nothing seems to be amiss for me.Forum: Fixing WordPress
In reply to: Why would post status revert from ‘published’ to ‘private’?I just received a new variation on this glitch: the post reverts to private, but in such a way that when I visit the edit page to rectify things none of the radio buttons are active.
I’m using Fx2.0 now. The only reason I even spotted the problem this time around was because I was performing maintenance on one of my Feedburner feeds, so (at least in terms of viewing the site) it can’t just be the browser any more.
Forum: Fixing WordPress
In reply to: Self-pingbackWhich is all very well until someone clicks the link in a feed reader.
I’d be very grateful for a plugin, if any exist…
Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”I’ve disabled the variable, but the problem is still there!
Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”OK, this is my problem. How should I go about using that script?
Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”I added it, but it hasn’t done much yet. The flag is still raised.
Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”magic_quotes_gpc is on for me, but the other two are not. Otherwise, I’ve got the same question as Shimon.
Forum: Fixing WordPress
In reply to: My hyperlinks are “Escaping”They are in the data for me.
And I just noticed that rel=”nofollow” is also being added with each edit too.