How to render a block in a node
This is how you can render a block in a node. First set your format to PHP and then find out what id your block has, in this case 76. The use the code below in your node body field.
<?php
$block = module_invoke('block', 'block', 'view', 76);
print $block['content'];
?>
Knowledge keywords: