↧
Display Drupal block anywhere
Ever wanted to show a Drupal block anywhere in your theme? Use the following code snippet, take note that you will need the module of the block and its delta.// Load the block region based on module...
View ArticleEmbed Drupal node form anywhere
Simple 1 line of code to embed a Drupal node form anywhere in your site although I would recommend doing it the Drupal way which is creating a custom module for this.print...
View ArticleEmbed Drupal block region into node page
Snippet to insert or embed Drupal block region into a node template.First of all, define the block region in your theme's .info file.YOUR_THEME.info...regions[BLOCK_REGION_NAME] = Block region...
View Article