Hello,
There’s no feature for this and a customization you’d need to make from your own plugin file or theme functions.php.
If you want to setup a custom function to display the time of each tweet, you can use the action hook “tweeple_tweet_meta” like this:
function my_tweeple_tweet_meta( $tweet ) {
// Use $tweet['time'] ...
echo $tweet['time'];
}
remove_action( 'tweeple_tweet_meta', 'tweeple_tweet_meta_default' );
add_action( 'tweeple_tweet_meta', 'my_tweeple_tweet_meta );
You’d have to come up with a creative way to calculate time ago, though. I know bbPress plugin has a function for this that works something like this:
https://www.jasonbobich.com/wordpress/a-better-way-to-add-time-ago-to-your-wordpress-theme/
You can see how what’s hooked by default to show the time of each tweet and how it works.
https://github.com/themeblvd/Tweeple/blob/master/inc/functions.php#L96