Mykhailo YATSYSHYN
Mykhailo YATSYSHYN

Reputation: 179

Typo3 create reference element for all subpages

I have a TYPO3 8.7.

I need an element (plugin) to be displayed for all subpages. I found such solutions:

1) Create element reference But I do not know how to add it simply on all pages?

2) Add plugin on every pages But is it possible to copy exactly my plugin installed on the page ?

Upvotes: 1

Views: 95

Answers (1)

Jo Hasenau
Jo Hasenau

Reputation: 2684

Both approaches are suboptimal, since you either had to create a reference content record on each page or your plugin would not be configured manually anymore.

My recommendation would be to put that particular plugin into a specific column of the root page and inherit the content of that column via the "slide" feature of the CONTENT cObject:

https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Content/Index.html#slide

We are using this feature i.e. for the whole footer section of https://coders.care including the twitter plugin and the random testimonial content.

Upvotes: 2

Related Questions