Include typo3 content elements on every page

You often want to include some content on every page of your website. There are a lot of different ways to accomplish this with typo3. Here's one quick solution: You create a hidden page or a page outside of your site tree, so that it doesn't show up in your menu. Then you simply add the content you want displayed on all pages to that page. When you hover over the icon next to the title of the content element (the one that lets you copy, cut etc) you see the object's ID.

If you want to include that element on every page, simply add it to your template using something similar to this:

temp.foo = RECORDS
temp.foo {
	tables = tt_content
	source = ID # Enter the object's ID here
}
That's all. You can also do this with all kind of plugins, many of them offer some kind of temp.foo < plugin.tx_extension_pi1 mechanism. It's usually documented in the extension manual.
Published on Jan. 22, 2009 at 5:56 p.m. by Nicolas and tagged Typo3, typoscript. You can follow the discussion with the comment feed for this post.

6 comments

  • avatar
    Constantin wrote this comment on Sept. 10, 2010, 12:14 p.m.
    Any ideas how this could be done for multilanguage content elements? Thanks!
    Reply to this comment
    • avatar
      nicolas wrote this comment on Sept. 10, 2010, 6:57 p.m.
      I'd assume that typo3 picks the correct language automatically, have you tried it?
      Reply to this comment
      • avatar
        Constantin wrote this comment on Nov. 11, 2010, 2:25 p.m.
        No, it doesn't pick the correct language. It simply shows the content element which has the provided id.
        Reply to this comment
        • avatar
          nicolas wrote this comment on Nov. 12, 2010, 12:22 p.m.
          Ah, makes sense I guess. You'll have to check for the language and pass the correct ID then.
          Reply to this comment
  • avatar
    Misha wrote this comment on July 3, 2011, 1:14 p.m.
    I am inserting this code in my sites general template, but nothing is happen. And second question is how can I determine the column in which I want the content element to appear? Thanks!
    Reply to this comment

Start a new thread

Cancel reply
Markdown. Syntax highlighting with <code lang="php"><?php echo "Hello, world!"; ?></code> etc.