I have a Wordpress site and installed a plugin to show my Twitter feed. The tweets come up fine, but the buttons for retweet, favorite, and reply are broken.
I figure this has to do with the updates Twitter has made, but have been unable to determine how to address it.
Here’s the piece of code I’m working on as it currently stands:
<div class="sbttr-user-timeline-item-desc">
<?php echo $twitter->linkable( $tweet ) ?>
</div>
<div class="sbttr-user-timeline-item-actions">
"<href="https://twitter.com/intent/tweet?in_reply_to=<?php echo $tweet->id ?>"<i class="icon-reply"></i>
"<href="https://twitter.com/intent/retweet?tweet_id=<?php echo $tweet->id ?>"<i class="icon-retweet-3"></i>
"<href="https://twitter.com/intent/favorite?tweet_id=<?php echo $tweet->id ?>"<i class="icon-star-empty-1"></i>
user->screen_name ?>/status/<?php echo $tweet->id ?>" rel="nofollow" target="_blank" title="<?php echo $tweet->user->name ?>" class="sbttr-user-timeline-item-timestamp">
<?php echo $twitter->time_ago( strtotime( $tweet->created_at ) ) ?>
</div>
</div>
I believe the issue is with the link code. ??? If someone can advise on how to get the buttons working, I’d appreciate it. Thank you.