ShareThis & Print Friendly + PDF Button
From GLMWiki
For the ShareThis and Print plugin combo (the one that produces a modal/overlay box on hover)
Install the "Print Friendly and PDF Button" plugin You do not need to install the "ShareThis" plugin. The script below takes care of everything you need. Place the following in the place you want it (like the breadcrumbs on otsegocountimi.gov) echo '<span class="st_sharethis" st_title="'. get_the_title().'" st_url="'. get_the_permalink() .'"></span>'; Grab the sccs/plugins/_sharethis.scss Grab the assets/share-icon.png Place this at the bottom of footer.php, below the closing body tag: <script charset="utf-8" type="text/javascript">var switchTo5x=true;</script> <script charset="utf-8" type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script> <script charset="utf-8" type="text/javascript">stLight.options({"publisher":"wp.c3d3647e-de70-4780-b71d-6b739fad685a"});var st_type="wordpress4.4.1";</script> Change the admin settings to Text only radio button, text White, font size 9px, remove the Text
For the AddThis button (the one on blogs that has a dropdown on hover)
<?php if (get_post_type( $post ) != "ai1ec_event") { ?> <div id="addthis_wrapper"> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a class="addthis_counter addthis_pill_style"></a> </div> <script type="text/javascript">var addthis_config = {"data_track_addressbar":false};</script> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5135fe4558d287a9"></script> <!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>--> <!-- AddThis Button END --> </div><!--/#addthis_wrapper--> <?php } ?>