diff --git a/plugins/content_types/jquery_social_stream.inc b/plugins/content_types/jquery_social_stream.inc
index e4b0c5d..45b0774 100644
--- a/plugins/content_types/jquery_social_stream.inc
+++ b/plugins/content_types/jquery_social_stream.inc
@@ -18,8 +18,11 @@ $plugin = array(
  * Render callback for the custom content type
  */
 function jquery_social_stream_render($subtype, $conf, $args, $context) {
-  $block = jquery_social_stream_block_content($conf);
-  return (object) $block;
+  ctools_include('block', 'ctools', 'plugins/content_types/block');
+  $conf['module'] = 'jquery_social_stream';
+  $conf['delta'] = 'jquery_social_stream';
+  $block = ctools_block_content_type_render($subtype, $conf);
+  return  $block;
 }
 
 /**
