How can I make it working with http://drupal.org/project/multistep ?
It could be great to give a user possibility of adding new node first and in the last step let him register and associate this new node with his new account.

Do you still working on that module ?

Comments

boreg’s picture

This is great idea. I'm looking forward this feature too.

benone’s picture

Yes, am still waiting for any response in that matter but thing nobody is taking care about this module anymore..

boreg’s picture

Looks like pageroute module is what you looking for.

benone’s picture

and it works cool with pageroute ?
can i add new node, register AFTER, and the node will be authored by me ?

meabbasi’s picture

Subscribing

g.paluch’s picture

Subscribing

gianfrasoft’s picture

Subscribing

n20’s picture

Subscribing

n20’s picture

it did the trick for me with a more or less dirty workaround.
this works with the multistep module 7.x-1.x-dev and a D7.8 installation.

find in inline_registration module
/inline_registration/inline_registration.module line 13

if ($user->uid == 0 && isset($form['#node']) && variable_get('inline_registration_' . $form['#node']->type, 0)) {

and replace it with

if ($user->uid == 0 && isset($form['#node']) && variable_get('inline_registration_' . $form['#node']->type, 0) && $form['#multistep']['current'] == 'group_step_last') {

just replace the name (machine name) of your last group to show the registration in the last step, mine is 'group_last_step' wich is in my case just an empty group. if you want the registration in between some steps just change the name for it:

$form['#multistep']['current'] == 'NAME_OF_YOUR_GROUP'
maerys’s picture

Unfortunately I got this...
Notice: Undefined index: #multistep in inline_registration_form_alter() (Zeile 14 von /home/www/acquia7/sites/d7-dev3.thematisch.at/modules/inline_registration/inline_registration.module).

elaman’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

Issue is very old. Closing it.