Respective d.org issue: https://www.drupal.org/node/23298
Some pages might want to show lists of books, or blog entries, etc. We have a name for each node, but a plural equivalent. These plurals ought to be declared in english in the module, and available for translation as usual. Or perhaps there is some other better way to do this.
GitHub Issue #:
1145
Recent comments
Hi..., And welcome I've just had a cursory look at the block_node module... Do you want all of the module's functionality or just a specific aspect? There are many different ways you could add a...
How to render nodes as blocks?
I guess this code could be used easily to hack core to allow a dropdown primary navigation menu.
How to show the primary navigation with dropdown elements in the header block?
I found a way with a custom module: function bootstrap_header_block_view_system_header_alter(&$data, $block) { $data['content'] = bootstrap_header_header_block_content(); } function...
How to show the primary navigation with dropdown elements in the header block?