diff --git a/paging.module b/paging.module
index b587302..3cae8e2 100644
--- a/paging.module
+++ b/paging.module
@@ -554,23 +554,11 @@ function _paging_nodeapi(&$node, &$node_body, &$node_teaser, $op, $teaser, $page
 
           if ($position == 'above' || $position == 'both') {
             $node->content['paging_above']['#value'] = $node->paging;
-            // Get possible manual weight for paging field from CCK setting.
-            if (function_exists('content_extra_field_weight')) {
-              $node->content['paging_above']['#weight'] = content_extra_field_weight($node->type, 'paging_above');
-            }
-            else {
-              $node->content['paging_above']['#weight'] = $node->content['body']['#weight'] - 1;
-            }
+            $node->content['paging_above']['#weight'] = $node->content['body']['#weight'] - 1;
           }
           if ($position == 'below' || $position == 'both') {
             $node->content['paging']['#value'] = $node->paging;
-            // Get possible manual weight for paging field from CCK setting.
-            if (function_exists('content_extra_field_weight')) {
-              $node->content['paging']['#weight'] = content_extra_field_weight($node->type, 'paging');
-            }
-            else {
-              $node->content['paging']['#weight'] = $node->content['body']['#weight'] + 1;
-            }
+            $node->content['paging']['#weight'] = $node->content['body']['#weight'] + 1;
           }
 
           $module_path = drupal_get_path('module', 'paging');
@@ -720,32 +708,6 @@ function _paging_body_shift($body, $size) {
 }
 
 /**
- * Implementation of hook_content_extra_fields().
- *
- * CCK hook to allow sorting of the pager field.
- */
-function paging_content_extra_fields($type_name = NULL) {
-  $position = variable_get('paging_pager_widget_position_' . $type_name, 'below');
-  if (!empty($type_name) && variable_get('paging_enabled_' . $type_name, 0) && $position != 'manual') {
-    if ($position == 'above' || $position == 'both') {
-      $fields['paging_above'] = array(
-        'label' => t('Paging (Above)'),
-        'description' => t('Pager navigation display.'),
-        'weight' => -1,
-      );
-    }
-    if ($position == 'below' || $position == 'both') {
-      $fields['paging'] = array(
-        'label' => t('Paging (Below)'),
-        'description' => t('Pager navigation display.'),
-        'weight' => 1,
-      );
-    }
-    return $fields;
-  }
-}
-
-/**
  * Implementation of hook_link().
  */
 function paging_link($type, $node = NULL, $teaser = FALSE) {
