Again, for a demo check these forums. I have it here ^_^
demo removed for performance reasons
OPEN: viewtopic.php
FIND:
- Code: Select all
$s_first_unread = $first_unread = true;
}
- Code: Select all
// Tweet This Post
$hashtag = ' #phpBB #6StringMODs';
Comment:
Feel free to change your hashtags to whatever your feel like - your own sitename perhaps. It would also be nice to tweet this topic/post/page via your won account
Feel free to change your hashtags to whatever your feel like - your own sitename perhaps. It would also be nice to tweet this topic/post/page via your won account
- Code: Select all
'S_HAS_ATTACHMENTS' => (!empty($attachments[$row['post_id']])) ? true : false,
BEFORE ADD:
- Code: Select all
'TWEET_POST' => urlencode('Read This: ') . generate_board_url() . "/viewtopic.$phpEx?f=$forum_id%26t=$topic_id%23p{$row['post_id']}" . htmlspecialchars(urlencode($hashtag)),
OPEN: language/en/viewtopic.php
FIND:
- Code: Select all
'SUBMIT_VOTE' => 'Submit vote',
AFTER ADD:
- Code: Select all
'TWEET_POST' => 'Tweet this post',
OPEN: styles/prosilver/template/viewtopic_body.html
FIND:
- Code: Select all
</h3>
BEFORE ADD:
- Code: Select all
<span class="tweet-link"><a href="http://twitter.com/home?status={TWEET_POST}" class="tweet-link" title="{L_TWEET_POST}"></a></span>
Comment:
If you have already installed "Tweet this topic", then you can skip the next 2 steps and go straight to purging your cache
If you have already installed "Tweet this topic", then you can skip the next 2 steps and go straight to purging your cache
OPEN: styles/prosilver/theme/colours.css
FIND:
- Code: Select all
a.right:hover {
color: #5E7BAA;
}
AFTER ADD:
- Code: Select all
.tweet-link a {
float: left;
background-image: url("{T_THEME_PATH}/images/twitter-logo.png");
padding-left:18px;
height: 18px;
background-repeat: no-repeat;
position: absolute;
}
Twitter logo - download/file.php?id=73
ps. I'm still working on the CSS issues with IE


