Optional OpenID Checking based on Website text field
-
I am trying to make Wp-openid work with my comment fields here. I was hoping that the plugin by itself would modify the comment template but unfortunately it didn’t so I had to modify the comments.php file by following the instructions in the readme.
my website text field is formatted as
<input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" class="textfield" tabindex="3" /><label class="text">Website (Optional)</label>
and I tried to change it to
<input type="text" name="openid_url" id="url" value="<?php echo $comment_author_url; ?>" class="textfield" tabindex="3" /><label class="text">Website (Optional)</label>
However, this way whenever anyone inserts a website address, then it tried to authenticate. I see in Will’s site that this is optional, that is, it only authenticates when the site provides authentication. Otherwise it just accepts the url (and puts the comment in moderation)
How can I achieve this?
On another note. The configuration page reports on the top
Warning: implode() [function.implode]: Bad arguments. in /home/.blah/me/dbzer0.com/wp-content/plugins/openid/interface.php on line 380
but the plugin seems to work :-/
- The topic ‘Optional OpenID Checking based on Website text field’ is closed to new replies.