PHPackages                             marekskopal/typo3-faq - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. marekskopal/typo3-faq

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

marekskopal/typo3-faq
=====================

FAQ plugin for TYPO3 CMS

v1.1.0(3mo ago)058↓71.4%GPL-2.0-or-laterPHPPHP &gt;=8.3

Since Mar 22Pushed 3mo agoCompare

[ Source](https://github.com/marekskopal/typo3-faq)[ Packagist](https://packagist.org/packages/marekskopal/typo3-faq)[ Docs](https://marekskopal.cz)[ RSS](/packages/marekskopal-typo3-faq/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (2)Dependencies (23)Versions (3)Used By (0)

FAQ for TYPO3 CMS
=================

[](#faq-for-typo3-cms)

FAQ accordion as a content element in TYPO3. Questions with inline answers are managed in the TYPO3 backend; the frontend renders a pure-CSS accordion using ``/`` — no JavaScript required.

Features
--------

[](#features)

- Questions with title, optional perex, and one or more inline answers (RTE)
- Manual drag &amp; drop sorting in the backend
- Pin questions as **top** — top questions are sorted first and can be listed separately
- Mark questions as **always open** (expanded by default)
- TYPO3 system **categories** support per question
- **Show only top** FlexForm option to display only pinned questions
- **Template layouts** — switchable per content element via FlexForm, configured through TSconfig or PHP globals
- Automatic **JSON-LD** (`FAQPage` schema.org structured data) injected into the page
- Pure-CSS accordion, no JavaScript
- Multilingual support (EN, CS, DE labels out of the box)
- Customizable templates and styling

Examples
--------

[](#examples)

- [www.fingather.com/faq](https://www.fingather.com/faq)

Requirements
------------

[](#requirements)

- PHP 8.3+
- TYPO3 13.4 or 14.x

Installation
------------

[](#installation)

```
composer require marekskopal/typo3-faq
```

After installation, run the database analyser in the TYPO3 Install Tool to create the required tables.

Setup
-----

[](#setup)

Include the TypoScript Set **FAQ** in your site package or via the site configuration sets.

Backend Setup
-------------

[](#backend-setup)

Create **Question** records on the page where the content element is placed:

- **Title** — question text (required)
- **Perex** — optional short description shown above the answers
- **Categories** — optional TYPO3 system categories
- **Top** — pin the question so it is sorted first (and can be shown exclusively via the *Show only top* option)
- **Always open** — expand the accordion item by default
- **Answers** — one or more inline answer records, each with RTE content

Drag and drop questions to set their display order within each tier (top questions always appear first). Then add the **FAQ** content element to the same page.

Content Element Options (FlexForm)
----------------------------------

[](#content-element-options-flexform)

OptionDescription**Show only top**When enabled, only questions marked as *Top* are displayed**Template layout**Select an alternative template layout defined in TSconfig or PHP globalsTemplate Layouts
----------------

[](#template-layouts)

Register custom template layouts in Page TSconfig:

```
tx_msfaq.templateLayouts {
    my_layout = My custom layout
}

```

Or in PHP (e.g. `ext_localconf.php`):

```
$GLOBALS['TYPO3_CONF_VARS']['EXT']['ms_faq']['templateLayouts'][] = ['My layout label', 'my_layout'];
```

Then configure the corresponding template paths in TypoScript:

```
plugin.tx_msfaq_faq.settings.templateLayouts {
    my_layout {
        templateRootPath = EXT:your_extension/Resources/Private/Templates/MsFaq/MyLayout/
        partialRootPath  = EXT:your_extension/Resources/Private/Partials/MsFaq/MyLayout/
        layoutRootPath   = EXT:your_extension/Resources/Private/Layouts/MsFaq/MyLayout/
    }
}

```

Customization
-------------

[](#customization)

### Templates

[](#templates)

Override templates by setting custom paths in TypoScript:

```
plugin.tx_msfaq_faq.view.templateRootPaths.10 = EXT:your_extension/Resources/Private/Templates/MsFaq/
plugin.tx_msfaq_faq.view.partialRootPaths.10  = EXT:your_extension/Resources/Private/Partials/MsFaq/
plugin.tx_msfaq_faq.view.layoutRootPaths.10   = EXT:your_extension/Resources/Private/Layouts/MsFaq/

```

### Styling

[](#styling)

The extension includes minimal CSS. Key classes:

ClassElement`.msfaq-wrapper`Outer wrapper`.msfaq__item`Single `` accordion item`.msfaq__question``` — the clickable question`.msfaq__answers`Answer container inside the open accordionJSON-LD
-------

[](#json-ld)

The extension automatically outputs a `FAQPage` JSON-LD block (schema.org structured data) based on the displayed questions and their answers. No additional configuration is required.

License
-------

[](#license)

GPL-2.0-or-later

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance82

Actively maintained with recent releases

Popularity11

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

96d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/33967656?v=4)[Marek Skopal](/maintainers/marekskopal)[@marekskopal](https://github.com/marekskopal)

---

Top Contributors

[![marekskopal](https://avatars.githubusercontent.com/u/33967656?v=4)](https://github.com/marekskopal "marekskopal (13 commits)")

---

Tags

typo3FAQ

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/marekskopal-typo3-faq/health.svg)

```
[![Health](https://phpackages.com/badges/marekskopal-typo3-faq/health.svg)](https://phpackages.com/packages/marekskopal-typo3-faq)
```

###  Alternatives

[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

101466.4k45](/packages/friendsoftypo3-content-blocks)[pagemachine/typo3-formlog

Form log for TYPO3

23233.9k8](/packages/pagemachine-typo3-formlog)[georgringer/news

News system - Versatile news system based on Extbase &amp; Fluid and using the latest technologies provided by TYPO3 CMS.

2825.2M112](/packages/georgringer-news)[wazum/sluggi

TYPO3 extension for URL slug management with inline editing, auto-sync, locking, access control, and redirects

41515.2k](/packages/wazum-sluggi)[eliashaeussler/typo3-form-consent

Extension for TYPO3 CMS that adds double opt-in functionality to EXT:form

1590.6k](/packages/eliashaeussler-typo3-form-consent)[friendsoftypo3/visual-editor

TYPO3 CMS Visual Editor - Brings a modern WYSIWYG editing experience to TYPO3 CMS.

523.1k2](/packages/friendsoftypo3-visual-editor)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
