As we know, all content in Drupal is treated as a node. We can load a node entity by ID, but how can one load a node based on its title? Let's check how:
It is interesting to see how Drupal improves overtime on this.
In Drupal 6, it was just node_load.
Drupal Node
In Drupal, while viewing a content type it will display the content type view with a comment form. If we want to remove the comment form from the view node page we can disable/unset it using hook_node_view function. But what we have to do if we want the comment form in a separate tab.
There is a module called Talk. This module removes the comment form from a node view page and display it on a separate tab.
A Drupal user wanted to know how to make Boost clear the front page when creating a new node. If you are facing the same question in your Drupal site and would like to know how to make Boost clear the front page when a node has been created then read on to know more.
Are you looking for an easy way to delete hundreds and thousands of nodes in your Drupal CMS? We all know how to delete it using the normal admin panel which forces us to select all and clicking the delete button again and again. If you are a lazy person then probably you don't like to waste your time to find some stupid script to delete all nodes. In fact there is no need to do that, since somebody had already done that. I am saying about the Devel Generate module. Yes, Devel Generate to delete nodes!