Features is not currently supported correct?

Tried to export a content type that was using Title module and the configuration settings were not passed on.

Is this a miss-step of the building of my feature or is it not currently supported?

Thanks

Comments

plach’s picture

Is this a miss-step of the building of my feature or is it not currently supported?

This is not supported at the moement.

Andy_D’s picture

Issue summary: View changes

Any progress on this? It's just cost me a day of dev time not having it.

DamienMcKenna’s picture

@Andy_D: you could probably spend half a day to write a patch with the functionality.

Dubs’s picture

@Andy_D - think of all the time you've saved thanks to people like @plach and the open source community who provide this code and support free of charge.

planctus’s picture

You can enable the field replacement programmatically using this function:
title_field_replacement_toggle($entity_type, $bundle, $legacy_field);
Do it during the installation of your feature (hook_install(), hook_enable(), whatever...) and you'll get the title replaced.
Thanks for the module, btw.
Da.