Near as I can tell, Page Title (meta , created by the Page Title module) is not a usable target for the Feeds module used for importing nodes. I'm currently attempting to move nodes from another system which uses a particular field as the Page Title. My target Content Type has the Page Title available for modification but this isn't seen by Feeds as a valid target.

Comments

bgilhome’s picture

Issue summary: View changes

(accidentally edited original post) ...

bgilhome’s picture

You can use a feeds hook to do this;

function page_title_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_name) {
$targets['page_title'] = array(
'name' => 'Page title',
'description' => t('The page title for the node'),
);
}

Seemed to only work with 7.x-2.x-dev version of page_title.

bgilhome’s picture

Issue summary: View changes