darkstardragon
Member
Posted 1 month ago #
Im just trying to figure out how to get rid of the thing that causes the mouse pointer to change into a "?" whenever its over the timestamp. Because I want the timestamp (how long ago posted) to appear, without changing the mouse pointer.
Im not using it as a widget, but it appears both when I use the php tag, or as a widget.
It appears both in Firefox and IE.
http://wordpress.org/extend/plugins/twitter-for-wordpress/
on line 99 of the twitter.php file it has:
echo sprintf( __('%s', 'twitter-for-wordpress'),' <span class="twitter-timestamp"><abbr title="' . date(__('Y/m/d H:i:s'), $time) . '">' . $h_time . '</abbr></span>'
change it to:
echo sprintf( __('%s', 'twitter-for-wordpress'),' <span class="twitter-timestamp">' . $h_time . '</span>' );
darkstardragon
Member
Posted 1 month ago #
Thanks, that fixed it for me.