I am attempting to use the Form Block module so that I can place one of my content type forms in a block. I seem to be able to get to the block but I'm not sure how to render it. If I do a print_r($block)
I see the block contents but I don't see anything to do with rendering it.
$block = module_invoke('formblock', 'block_view', 'csc_newsletter_subscription');
// Normally I would do something like this if it was just a block_view
$variables['newsletter_subscription_form'] = render($block['content']['#markup']);
And then I would be able to take the $newsletter_subscription_form variable and display it in my tpl file, but this does not seem to work.
What am I missing?