Hi Gulliver,
Thanks for reaching out.
I believe you’ve reached out to us via email and we were able to find you a solution.
Please let us know if you have any other questions!
Best,
Brandon
ShareThis Support
For anyone else it might help, I’ll add Brandon’s solution here:
If you're using jQuery to load content via Ajax, I have found this to be a pretty simple solution:
$(document).ajaxComplete(function() {
//creates the share icons
stButtons.locateElements();
});
This will fire after every ajax call. You can also call this function in the 'complete' function of jQuery.ajax() settings.