Currently, these is no discernible way to use node_import to specify the page_title. The follow code enables this. I put this code in a file called page_title.inc and be placed it under node_import/supported/page_title but I'm not sure if there is a better place. I don't think that node_import will look for it outside of it's sub-directories but I could be wrong.

/**
 * Implementation of hook_node_import_fields().
 */
function page_title_node_import_fields($type) {
  $fields = array();

  $fields['page_title'] = array(
    'title'=>'Page Title',
    'tips'=>'The title that will be used for SEO and bookmarking',
    'module'=>'page_title');

  return $fields;
}

Comments

DamienMcKenna’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)

The D6 branch is no longer supported so no new features will be added.