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.
| Comment | File | Size | Author |
|---|---|---|---|
| #9 | commerce_bpc-display-node-selection-form-not-showing-2118407-9.patch | 1.41 KB | das-peter |
Comments
Comment #1
Pedroc-2 commentedPatch.
Comment #2
Pedroc-2 commentedChanged to needs review for the test bot.
Comment #3
Pedroc-2 commentedComment #4
maartendeblock commentedGoooooooo testbot!
Comment #5
maartendeblock commentedComment #6
maartendeblock commentedWhat are we doing wrong? Why doesn't the testbot take this? :/
Comment #7
maartendeblock commentedRemoved bad new line.
Comment #8
discipolo commentedi can verify this issue occurs and this patch applies and makes the form show up.
Comment #9
das-peter commentedI think the "correct" way of fixing this would be to use the
drupal_get_formas 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 todrupal_get_form()required.Comment #10
GoddamnNoise commentedI'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.