Jehy
Forum Replies Created
-
I hope the authors of plugin will also notice and fix it…
Seems like that function works randomly – I mean, depending on the system settings ??Try this.
Forum: Plugins
In reply to: [Plugin: OpenID] Cannot LoginTry this.
Forum: Plugins
In reply to: [Plugin: RSS Atom Avatar] Does not work (with WP 2.7)By the way, you are wrong – it works perfectly with 2.7.
ESPECIALLY for you in description was text:
Please!
If you don’t understand what plugin does – don’t rate it ??Forum: Plugins
In reply to: [Plugin: Post Avatar] Missing several simple featuresOh, sorry for my english :))
I just meant that it would be wonderful, if you could choose default avatar either from Post Avatar’s set or gravatar.Now I think that instead of gravatar option, there should be just a plain URL – I think that many users would like to use avatars from their social services as default.
Forum: Everything else WordPress
In reply to: using if-(is front page) only works ONCE in a template?use is_home instead of is_front_page.
Forum: Plugins
In reply to: OpenID server not declared on WP 2.7Yeah, now, with this replace, everything is working great…
Forum: Plugins
In reply to: [Plugin: WP No External Links] Works perfectlyIt only masks links in posts, comments and etc.
There is no way I can mask link in your widget or template =)Forum: Plugins
In reply to: [Plugin: Post Avatar] Missing several simple featuresEven more comfortable:
function true_avatar() { $showav=0; if(function_exists(gkl_get_postavatar)) { $data=gkl_get_postavatar(); if($data['avatar_url']) gkl_postavatar('avatar avatar-100'); else $showav=1; } if(function_exists("get_avatar")&&($showav==1)) echo get_avatar(get_the_author_email(), 100); }
Forum: Plugins
In reply to: [Plugin: Post Avatar] Missing several simple featuresHmmm…
For myself, I corrected this with code<?php $showav=0; if(function_exists(gkl_get_postavatar)) { $data=gkl_get_postavatar(); if($data['avatar_url']) gkl_postavatar('avatar avatar-100'); else $showav=1; } if(function_exists("get_avatar")&&($showav==1)) echo get_avatar(get_the_author_email(), 100); ?>
Gravatar is shown if there’s no avatar defined for post.
I think you should add this little piece of code to FAQ or manual =)Forum: Plugins
In reply to: [Plugin: RSS Atom Avatar] Does not work (with WP 2.7)You’re telling strange things o_O
You specify favicon and avatar – and it is added to feed.
If you have those native in 2.7, then I’m glad for you))Forum: Plugins
In reply to: [Plugin: WP No External Links] Https links and cloaking?I don’t think think that your problem is because of my plugin – it doesn’t mask https links.
If you want to hide outbond links, it’s absolutely another task – try using wp-affiliate or some other plugin.
@wnorris: Thanks for consideration, I’ll be able to play with it on holidays, then I’ll contact you.
Also thanks for info about additional openid profile fields plugin, that’s great.Forum: Plugins
In reply to: Fatal error when logging into a OpenID sitePlease, correct topic status – I see the same message.
Pear is installed, don’t use redirecting staff.“openid” matches the plugin’s name, there’s no other way to link topic to that plugin.
From the first message in topic it were obvious that here’s the discussion of particular plugin, not about openid on blogger.lot of people have done it. There is plenty of reference about this method, if you search on Google
Yeah. People also modify core files, use plugins to enable php code in comments and so on. PEOPLE in common are really stupid creatures. Don’t ever think about doing something “as everybody does”, do it as it should be. I am really ashamed to tell simple things like this.