Here is the relevant PHP code where you can see the shortcode for AccessPress. Thanks again for your help.
// Add Facebook, Google+ and Twitter Social Sharing Buttons with AccessPress sharing counts.
add_action('genesis_entry_header', 'after_title_text', 12);
function after_title_text() {
if (is_single()) { ?>
<div class="social-media-sharing">
<div class="wrap">
<div class="social-share-btn">
<div class="fb-share-button">
<a href="https://www.facebook.com/sharer/sharer.php?app_id=649148065186807&display=popup&u=<?php the_title(); ?> - <?php the_permalink(); ?>&ref=plugin&src=share_button" title="Share on Facebook." onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=536,width=640');return false;">
<i class="fa fa-facebook"></i><span class="buttonText">Share</span></a>
<div class="bubble">
<div class="FILLINLATER"><?php echo do_shortcode("[apss-count network='facebook']"); ?></div>
</div>
</div>
</div>
<div class="social-share-btn">
<a target="blank" href="https://plus.google.com/share?url=<?php the_permalink(); ?>" title="Share on Google+." onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;">
<div class="google-follow-button"><i class="fa fa-google-plus"></i><span class="buttonText">Share</span></div>
<div class="bubble">
<div class="google-count"><?php echo do_shortcode("[apss-count network='google-plus']"); ?></div>
</div>
</a>
</div>
<div class="social-share-btn">
<div class="twitter-icon">
<a class="twitter-follow-icon" title="Tweet this!" href="https://twitter.com/intent/tweet?hashtags=MBA%2C%20admissions&original_referer=http%3A%2F%2Fwww.mbaprepadvantage.com%2Fblog%2Fcreating-your-mba-application-plan%2F&ref_src=twsrc%5Etfw&text=<?php the_title(); ?> - <?php the_permalink(); ?>" onclick="javascript:window.open(this.href,
'', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=450,width=550');return false;">
<i class="fa fa-twitter"></i><span class="buttonText">Tweet</span></a>
<a target="blank" href="https://twitter.com/intent/follow?screen_name=MBAPrepAdv">
<div class="bubble"><div class="twitter-count"><?php echo do_shortcode("[apss-count network='twitter']"); ?></div></div></a>
</div>
</div>
</div>
<?php
}
}