4
votes

I started to learn how to use TYPO3 because I want to create a FAQ page. So I created a very simple page:

FAQ Page

But if I view the page, then i only get "HELLO WORLD!". What am i doing wrong? Did i missed some steps? Where can i get started the best way? I use TYPO3 8.1.2 btw.

enter image description here

2

2 Answers

3
votes

First of all: You have done nothing wrong.

TYPO3 has it's own configuration language: TypoScript.

You have to tell the system in TypoScript what should be rendered in the frontend. The default is a simple TypoScriptSnippet that only prints out the text HELLO WORLD.

I looks something like this:

page = PAGE
page.10 = TEXT
page.10.value = WELLO WORLD

You can find the configuration of your page in the Template module in the backend in the field "Setup". You can either change the TypoScript directly in there or use external files and include them.

You have to understand at least the basics of TypoScript and Templating in TYPO3 to make the content you create in the backend appear in the frontend. If you learn from sources in the internet, try to avoid the old ones.

If you need more help, please feel free to join the TYPO3 community at slack (https://forger.typo3.org/slack), where you can ask any kind of TYPO3 related questions. We will happyly hep you to get started.

0
votes

you just need to add template typescript code.

or other best way is the use the template by install the template from the pre distribution option.

Go to file extension and select from drop down "Get Preconfigured distribution" option and install from their list of available template.

After install successfully you can see page add/edit option have web icon, inside them you can create new page, It will show page content on view.