Twitter Avatar Reloaded stopped replacing gravatars with Twitter avatars. Black squares are displayed instead (in IE these squares additionally show a “X”).
If this cannot be easily fixed, is it at least possible to turn off replacing of the gravatars without disabling of the plugin?
https://www.ads-software.com/plugins/twitter-avatar-reloaded/
]]>Using the most recent version and I’ve been getting premature end of script header errors that have repeatedly crashed my site when adding new posts.
As part of that, I went on a debug mission and while I’m not sure if this was the culprit, it could potentially cause those errors. Both PHP files in your plugin have an extra line of space at the end of the file. I removed it on my site and we’ll see if it makes a difference. Just wanted to give you a heads up.
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>I would like to add the text: “Twitter: @username” to the comments output, with “@username” linking to the users profile. How exactly should I use the template functions to achieve this?
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>This plugin works wonderful with the default theme but the Twitter field does not show with my default theme. I tested this on a clean WordPress installation.
In my comments.php I identified:
<fieldset>
<label for="author">Name <?php if ($req) echo '<span class="small-text">(required)</span>'; ?></label>
<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="50" />
</fieldset>
Can I just add a similar <fieldset> to make the Twitter field appear? What should it be exactly?
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>How exactly should I use the template function get_comment_author_twitter_url($comment_id) to make the avatar link to the Twitter profile?
My comments.php contains:
<h2>Comments</h2>
<ol id="comments">
<?php foreach ($comments as $comment) : ?>
<li id="comment-<?php comment_ID(); ?>" class="<?php echo $altcomment; ?>">
<div class="gravatar">
<?php if (function_exists('get_avatar')) {
echo get_avatar(get_comment_author_email(),'40');
} ?>
</div>
<div class="the_comment">
<p><?php comment_author_link(); ?><br />
<span class="small-text"><?php comment_date('F d, Y'); ?></span></p>
<?php comment_text(); ?>
</div>
</li>
<?php
if ($altcomment == 'alt') {
$altcomment = '';
} else {
$altcomment = 'alt';
}
?>
<?php endforeach; ?>
</ol>
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>I’be been using twitter avatar reloader time ago, but recently it stopped working, it does not show the avatar anymore when leaving a comment, it shows this message
Warning: get_headers(https://api.twitter.com/1/users/profile_image?screen_name=danikindermann&size=bigger) [function.get-headers]: failed to open stream: Permission denied in wp-content/plugins/twitter-avatar-reloaded/libs/TwitterProfileImage.php on line 27
Why is this happening?
as i said it, everything was working fine, but now everytime someone leave a comment it shows that message and the twitter username is correct.
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>How do I use the template functions?
https://www.ads-software.com/extend/plugins/twitter-avatar-reloaded/
]]>