diff --git a/plugins/content_types/node_context/node_comment_wrapper.inc b/plugins/content_types/node_context/node_comment_wrapper.inc
index 8e25429..92d1970 100644
--- a/plugins/content_types/node_context/node_comment_wrapper.inc
+++ b/plugins/content_types/node_context/node_comment_wrapper.inc
@@ -15,6 +15,7 @@ if (module_exists('comment')) {
     'defaults' => array(
       'mode' => variable_get('comment_default_mode', COMMENT_MODE_THREADED),
       'comments_per_page' => variable_get('comment_default_per_page', '50'),
+      'pager_id' => '',
     ),
   );
 }
@@ -39,7 +40,8 @@ function ctools_node_comment_wrapper_content_type_render($subtype, $conf, $panel
   if (($node->comment_count && user_access('access comments')) || user_access('administer comments')) {
     $mode = variable_get('comment_default_mode_' . $node->type, COMMENT_MODE_THREADED);
     $comments_per_page = variable_get('comment_default_per_page_' . $node->type, 50);
-    if ($cids = comment_get_thread($node, $mode, $comments_per_page)) {
+    $pager_id = $conf['pager_id'];
+    if ($cids = comment_get_thread($node, $mode, $comments_per_page, $pager_id)) {
       $comments = comment_load_multiple($cids);
       comment_prepare_thread($comments);
       $build = comment_view_multiple($comments, $node);
@@ -96,6 +98,12 @@ function ctools_node_comment_wrapper_content_type_edit_form($form, &$form_state)
     '#options' => $options,
     '#weight' => 3,
   );
+  $form['pager_id'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Pager Id'),
+    '#default_value' => $conf['pager_id'],
+    '#weight' => 4,
+  );
   return $form;
 }
 
diff --git a/plugins/content_types/node_context/node_comments.inc b/plugins/content_types/node_context/node_comments.inc
index 0f0033d..a35d276 100644
--- a/plugins/content_types/node_context/node_comments.inc
+++ b/plugins/content_types/node_context/node_comments.inc
@@ -15,6 +15,7 @@ if (module_exists('comment')) {
     'defaults' => array(
       'mode' => variable_get('comment_default_mode', COMMENT_MODE_THREADED),
       'comments_per_page' => variable_get('comment_default_per_page', '50'),
+      'pager_id' => '',
     ),
   );
 }
@@ -56,6 +57,12 @@ function ctools_node_comments_content_type_edit_form($form, &$form_state) {
     '#options' => $options,
     '#weight' => 3,
   );
+  $form['pager_id'] = array(
+    '#type' => 'textfield',
+    '#title' => t('Pager Id'),
+    '#default_value' => $conf['pager_id'],
+    '#weight' => 4,
+  );
   return $form;
 }
 
@@ -83,8 +90,9 @@ function ctools_comment_render($node, $conf) {
 
   $mode = $conf['mode'];
   $comments_per_page = $conf['comments_per_page'];
+  $pager_id = $conf['pager_id'];
 
-  $cids = comment_get_thread($node, $mode, $comments_per_page);
+  $cids = comment_get_thread($node, $mode, $comments_per_page, $pager_id);
   $comments = comment_load_multiple($cids);
 
   if ($comments) {
