Thanks for the plugin Jon, it's just what I needed!
I was hoping to include the widgets manually in my theme much like nmash, so I crafted the following solution. It's not the best way to do it, but hopefully it may save you a little time in the future:
Added method to the SocializeFrontEnd class at the bottom of /frontend/socialize-frontend.php:
// Add buttons to theme manually with template function
function display_socialize() {
$socialize_settings = array();
$socialize_settings = get_option('socialize_settings10');
$content = $this->inline_wrapper($socialize_settings) . $content . $this->action_wrapper($socialize_settings);
return $content;
}
After that I'm able to use Socialize inside of my theme using the following:
// Manually add the Socialize Plugin output
if( class_exists('socializeWP') ) {
global $socializeWP, $socializeWPfrontend;
if( method_exists($socializeWPfrontend, 'display_socialize') )
echo $socializeWPfrontend->display_socialize();
}