• On my twitter tools plugin i would like it to show the time before the tweet. Here is a layout:

    Current scenario:

    sample tweet about wp 5 hrs ago

    Desired scenario:

    5 hrs ago: sample tweet about wp

    Any ideas where i change this around? I cannot find it but that doesnt mean much…

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’ve just had a trawl through the plugin code, but I’m not familiar with it at all and nothing jumped out at me.

    I’d suggest contact Alex King, I’m sure he’ll be able to give you an answer!

    Thread Starter mjstromberg

    (@mjstromberg)

    Thanks alex, i will hope Alex King finds this post…

    You can try contacting him directly at:

    http://alexking.org/contact

    Having just looked at his Readme, I found what the likely candidate is in the plugin for generating this output.

    from line 479

    $output = aktt_make_clickable(wp_specialchars($tweet->tw_text)).' <a href="http://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a>';

    I would imagine that if you change this to read:

    $output = ' <a href="http://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a>'. aktt_make_clickable(wp_specialchars($tweet->tw_text));

    That might do it. However I can’t test this as I don’t have a twitter account 🙂

    Thread Starter mjstromberg

    (@mjstromberg)

    That didnt do it but thanks anyway. His website says he does not want to be contacted regarding wp plugin support. So i will see if he finds it here.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘twitter layout’ is closed to new replies.