1-866-277-9958

nodes

Drupal node publishing options

Heildelberg press controls

Drupal can handle some pretty advanced publishing scenarios. The core installation provides a handful of settings that enable us to control many aspects of how nodes are published. In this tutorial, we dig into these controls and provide some use cases.

We start with the basics of using the published setting to switch nodes from draft to live. We then review how to work with the author information and conclude with a tour of Drupal's handy revision system.


Get Drupal help when you need it most! Find hundreds of great tutorials. Track, rate, comment and more. Create Account

Introduction to Drupal nodes

Introduction to Drupal nodes

Drupal supports many different types of content, but the king of them all is the node. Nodes contain static copy and markup (usually) authored via Drupal's admin. The majority of pages in most Drupal sites are nodes. They come in many different flavors, such as basic pages, blog entries, products, and press releases.

In this tutorial video we see how Drupal manages content and how nodes work. If you are new to Drupal, this video will help get you oriented quickly for productive content management.


Get Drupal help when you need it most! Find hundreds of great tutorials. Track, rate, comment and more. Create Account

Remove "submitted by Username on date text" on Nodes #drupal

Solution: 

I am officially documenting this process, and hopefully this finds you well on your search for removing the submitted by Username on date text.

1. Go to your Global Settings (Site Building > Themes > Configure > Global Settings)
2. The box labeled Display post information on is where you can control which node the information is displayed on.
3. Check (or uncheck) the boxes.
4. Save.

global settings

Sounds easy, I know, but it's the small things like this in Drupal that can be easy to forget.

Well, not anymore.

Drupal node module skeleton

Recipe for creating a node module skeleton:
1. Create three files using the code snippets at the bottom of this post

  • foo.info
  • foo.module
  • foo.theme

Note: replace foo with your module name. If this is for a specific project, use project codes in the format [pc][nodetype]

2. do the following search and replace on all three files
"[pc]foo" -> [pc][nodetype]
"foo" -> [nodetype]

foo.info code:

  1. ; $Id $
  2. name = "Foo"
  3. description = "Foo posts."
  4. package =
  5. dependencies =

foo.module code:

Syndicate content
Syndicate content

©1999 - 2011 LevelTen Interactive - Dallas, TX