Closed (works as designed)
Project:
Multistep (D7)
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
14 Feb 2013 at 20:10 UTC
Updated:
10 Apr 2013 at 17:48 UTC
Is there a way to do this in 7.x? We had the functionality in 6.x.
For example adding the node's author information into a step. I can't find a way to do this through the GUI, so I've been doing it in code (setting #access = FALSE on form elements that aren't already in a multistep group).
Thanks in advance
Comments
Comment #1
philipjohn commentedI'm also after this. I have a custom module that adds inline registration but it appears in step 1 when I need to add it to it's own step 4.
Comment #2
aboodred1 commentedIn order for you to add extra fields to steps, you need to implement hook_field_extra_fields
Then you will be able to control your extra field from Manage Field section (Field UI)
Example:
Entity type: could be node
bundle: could be content type name
Comment #3
djdevinThanks, this does work as designed.
I was also able to put other modules' (other than my own) fieldsets into steps by
1) implementing hook_field_extra_fields and adding a definition for their fieldset
2) removing #group = additional_settings with a form alter
This worked for Ubercart and a couple of other modules that do not use field_attach_form and field_extra_fields natively.
The validation is another issue, there are a couple bugs but there are other issues for that already.