• Resolved darkstardragon

    (@darkstardragon)


    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/

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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>' );

    Thread Starter darkstardragon

    (@darkstardragon)

    Thanks, that fixed it for me.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Twitter for WordPress] The mouse pointer changing into “?”’ is closed to new replies.