AddThis Sharing Bar Not Displaying on Custom Page Template – JS conflict?

The two functions operate differently. get_the_content retrieves the raw data from the database, where the_content retrieves the data, encapsulates areas with paragraph tags, cleans up, and applies filters.

I’m confused which is using which, but if the page that is missing the AddThis is using the get_the_content, try applying the filters from the plugins before displaying it:

<?php apply_filters('the_content',get_the_content( $more_link_text, $stripteaser, $more_file )) ?>

Make sure to use the same arguments as the original get_the_content function call. Strip out any that you aren’t using, so the minimum would be:

<?php apply_filters('the_content',get_the_content()) ?>

I should add that the Javascript that you saw on the /blog/ page was not for individual AddThis instances, so it isn’t a JS conflict.