How to show all news in one page with detail view in typo3?

1.8k views Asked by At

I followed this tutorial to create news page in typo3. But i want to show all news in side bar and detail view in same page. When i try create plugin element with detail view on same page, it show error

Reason: No news entry found.

Screenshot of page

I have pointed to same page for

PageId for single news display

for list view(Without overloadin detail view).

How to i do that and how to enable next page and prev page if news contents exceeds 10?

1

There are 1 answers

0
ntiedt On

You should use the news documentation for this case.
List and detail on the same page using TypoScript. Important part is the condition.

[globalVar = GP:tx_news_pi1|news > 0]
  page.10.marks.content < lib.news_detail
[else]
  page.10.marks.content < lib.news_list
[end]