Modified for Font Awesome 5 and correction made for the stumbleupon.com transition to mix.com
In your Templates section of the MyBB ACP, find the Ungrouped Templates -> headerinclude template. Add the following after
Go to your ACP --> Theme You want to edits templates -->Show Thread Templates -->showthread_ratethread
and add the following to the bottom:
In your Templates section of the MyBB ACP, find the Ungrouped Templates -> headerinclude template. Add the following after
{$stylesheets}
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css">
Go to your ACP --> Theme You want to edits templates -->Show Thread Templates -->showthread_ratethread
and add the following to the bottom:
<style>
.sharethread a:link {
color: #0072BC;
text-decoration: none;
}
.sharethread a:visited {
color: #0072BC;
text-decoration: none;
}
.sharethread a:hover,
.sharethread a:active {
color: #333;
text-decoration: none;
}
.sharethread {
float:left;
display: inline-block;
vertical-align: middle;
margin-left: 6px;
margin-top: 6px;
}
.sharethreadspan {
color: #333;
padding-right: 10px;
font-weight: bold;
}
</style>
<div class="sharethread">
<span class="sharethreadspan">Share Thread:</span>
<a title="Facebook" href="http://www.facebook.com/share.php?u={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}" target="_blank"><i class="fab fa-facebook" alt="Facebook"></i></a>
<a title="Twitter" href="http://twitter.com/home?status={$thread['subject']} - {$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}" target="_blank"><i class="fab fa-twitter" alt="Twitter"></i></a>
<a href="https://plus.google.com/share?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&title={$thread['subject']}" target="_blank">
<i class="fab fa-google-plus-g" alt="Google+"></i>
</a>
<a title="Digg" href="http://digg.com/submit?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}" target="_blank"><i class="fab fa-digg" alt="Digg"></i></a>
<a title="Delicious" href="http://del.icio.us/post?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&title={$thread['subject']}" target="_blank"><i class="fab fa-delicious" alt="Delicious"></i></a>
<a title="Reddit" href="http://reddit.com/submit?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&title={$thread['subject']}" target="_blank"><i class="fab fa-reddit" alt="Reddit"></i></a>
<a title="Mix" href="http://www.mix.com/mixit?su=submit?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}" target="_blank"><i class="fab fa-mix" alt="Mix"></i></a>
<a title="Pinterest" href="http://pinterest.com/pin/create/button/?url={$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&title={$thread['subject']}" target="_blank">
<i class="fab fa-pinterest" alt="Pinterest"></i>
</a>
<a href="mailto:?subject={$thread['subject']}&body=Check out this post {$mybb->settings['bburl']}/showthread.php?tid={$thread['tid']}&title={$thread['subject']}" title="Share by Email">
<i class="fas fa-envelope" alt="Email This!"></i>
</a>
<a href="javascript:window.print()">
<i class="fas fa-print" alt="Print Me!"></i>
</a>
</div>