Add a block that holds the cloned node form. This is what will be used on http://drupalbin.com for having the "Fix for ___" form below the actual node. See the attached patch and screenshot.

Thanks. Great module.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

pwolanin’s picture

It would seem this block only makes sens to exist if one is using the pre-populate mode.

Also, seems like this is never going to be a block you want somewhere other than immediately above or below the node?

E.g. one could use hook_nodeapi($op='alter') or $op=view to place the form at the bottom of the body?

RobLoach’s picture

Version: 6.x-1.x-dev » 7.x-1.x-dev
FileSize
2.24 KB

You want it to be a block because you want the ability to stick it into any region you want. I've had a two-column page layout before, had the content in the left-hand column, and then the form on the right-hand column.

Leveraging the block system gives the user the ability to define where they want it to appear. Whether that is below the content, or in an entirely separate region is up to them.

pwolanin’s picture

Issue summary: View changes

For MLT blocks for apachesolr I use the test:

if (($node = menu_get_object()) && (!arg(2) || arg(2) == 'view')) {

That might be better than what you have?

pwolanin’s picture

Status: Needs review » Closed (won't fix)