When I am creating bulk products and want to create the display for these products.

I don't see any existing content types to create a new node. I checked all the settings and did a clean install with only commerce_bpc (and dependencies) and had the same problem.

Moving the form from commerce_bpc_create_bulk_form_display_node to a form function solved the problem for me. Patch in following comment.

Comments

Pedroc-2’s picture

StatusFileSize
new924 bytes

Patch.

Pedroc-2’s picture

Status: Active » Needs review

Changed to needs review for the test bot.

Pedroc-2’s picture

StatusFileSize
new924 bytes
maartendeblock’s picture

StatusFileSize
new924 bytes

Goooooooo testbot!

maartendeblock’s picture

StatusFileSize
new924 bytes
maartendeblock’s picture

What are we doing wrong? Why doesn't the testbot take this? :/

maartendeblock’s picture

StatusFileSize
new922 bytes

Removed bad new line.

discipolo’s picture

Issue summary: View changes

i can verify this issue occurs and this patch applies and makes the form show up.

das-peter’s picture

StatusFileSize
new1.41 KB

I think the "correct" way of fixing this would be to use the drupal_get_form as page callback for the menu item.
The drupal_goto() still will redirect but if there's a form it will be rendered using the default handler - no wrapper with a call to drupal_get_form() required.

GoddamnNoise’s picture

I've just found the same problem. The patch in #9 didn't work for me (i got a WSOD), but the patch in #7 worked for me.