The Feed Display Extension provides an Extbase based frontend plugin to
fetch and parse RSS and Atom web feeds to be displayed in the frontend
by Fluid.
It allows you to configure which data should be scraped and made
available in Fluid as variables. Configuration can be done globally by
TypoScript or directly in the plugin options.
The aim of this extension is to provide a way to display RSS and Atom web
feed data retrieved from any URL in the frontend. It is possible to configure
which data is to be read from the feed for the purpose of display.
Parsing of feed data is done by the SimplePie
library, which is a very fast and easy-to-use feed parser, written in PHP.
Remote http and https feeds are fetched through TYPO3's PSR-17/PSR-18
interfaces. This means instance-wide HTTP client settings such as proxy
configuration are applied automatically. Local feed files and other non-HTTP
sources use SimplePie's default transport.
The entire result is stored in its own cache (using the caching framework)
so that the feed does not have to be parsed with each call. If something has
changed in the plugin configuration (TypoScript or FlexForm), the cache is
renewed immediately, otherwise only after a configurable time has elapsed.
Screenshots
Here you can find screenshots of all application areas of this extension.
Frontend View
Below you can find an example of the frontend output of the official TYPO3
news feed. Styling and structure can be customized as you like.
Frontend View
New Content Element Wizard
New Content Element Wizard
Plugin Settings
Below you can find screenshots of all available plugin options. Use these
options if you want to make settings on content element level.
Alternatively, these can also be configured by
Site Settings or, in projects using the
static TypoScript include, by TypoScript Constants in the constant editor.
Plugin Options: "General" Tab
Plugin Options: "General" Tab
Plugin Options: "Advanced" Tab
Plugin Options: "Advanced" Tab
Plugin Options: "Get Fields" Tab
Plugin Options: "Get Fields" Tab
Constant Editor
Below you can find screenshots of all available constants in the constant
editor. In TYPO3 v13/v14 Site Set integrations, use Site Settings for global
configuration. The constant editor remains available for projects that still
use static TypoScript template records.
Constant Editor Feed Display Options
Constant Editor: "Files"
Constant Editor: "Files"
Constant Editor: "General"
Constant Editor: "General"
Constant Editor: "Advanced"
Constant Editor: "Advanced"
Constant Editor: "Fields to get from Feed and Items"
Constant Editor: "Fields to get from Feed and Items"
Installation
Feed Display supports TYPO3 v13 and v14. Composer installation is recommended.
See Compatibility for the exact TYPO3/PHP version range and for renamed
TYPO3 v14 backend module paths.
Install the extension with Composer
In your command line interface, change to the root directory of your project and enter the following command:
composer req erhaweb/feed-display
Copied!
Apply database changes
This extension uses the caching framework to cache feed data and
plugin configuration. For this, the tables cache_feeddisplay
and cache_feeddisplay_tags must be created.
These tables can be created in the Maintenance module under
Analyze Database Structure → Apply selected changes.
TYPO3 v13: Admin Tools → Maintenance
TYPO3 v14: System → Maintenance
Maintenance: Analyze Database Structure
Install the extension with Composer in a DDEV environment
In your command line interface, change to the root directory of your project and enter the following command:
ddev composer req erhaweb/feed-display
Copied!
Apply database changes
This extension uses the caching framework to cache feed data and
plugin configuration. For this, the tables cache_feeddisplay
and cache_feeddisplay_tags must be created.
These tables can be created in the Maintenance module under
Analyze Database Structure → Apply selected changes.
TYPO3 v13: Admin Tools → Maintenance
TYPO3 v14: System → Maintenance
Maintenance: Analyze Database Structure
Install the extension in the classic way
Open the TYPO3 backend.
Go to the Extension Manager.
TYPO3 v13: Admin Tools → Extensions
TYPO3 v14: System → Extensions
Select Get Extensions in the module header.
Enter the extension key feed_display in the search field.
In the result list click the Import & Install button under Actions
The "Get Extensions" dialog
Compatibility
Feed Display is maintained for TYPO3 v13 and TYPO3 v14. The local package
metadata is the authoritative source for the supported version range.
Requirement
Composer package
TER metadata
TYPO3
^13.4 || ^14.3
13.4.0-14.3.99
PHP
>=8.2 <8.6
8.2.0-8.5.99
TYPO3 v13 and v14 use the same extension runtime code. The frontend plugin,
TypoScript settings, Site Set, FlexForm settings, PSR-14 event and Fluid
templates are available in both supported TYPO3 major versions.
Backend module names
TYPO3 v14 renamed and regrouped several backend modules. Feed Display keeps
the same feature set, but the navigation paths used in this manual differ by
TYPO3 version.
Task
TYPO3 v13
TYPO3 v14
Assign the Site Set
Site Management → Sites
Sites → Setup
Inspect or edit TypoScript records
Site Management → TypoScript
Sites → TypoScript
Create or edit the Feed Display content element
Web → Page
Content → Layout
Compare and update database schema
Admin Tools → Maintenance
System → Maintenance
Run upgrade wizards
Admin Tools → Upgrade
System → Upgrade
View or install extensions in classic mode
Admin Tools → Extensions
System → Extensions
Site Set and static TypoScript
For TYPO3 v13 and v14, the recommended integration is the Site Set
erhaweb/feed-display. It ships the extension TypoScript and typed Site
Settings from Configuration/Sets/FeedDisplay/. See
Site Set and settings for setup details.
The extension still registers a static TypoScript include for installations
that use TypoScript template records. This is a compatibility fallback for
migrated projects that have not yet moved their configuration to Site Sets.
Plugin content element migration
Older Feed Display versions registered the plugin as an Extbase plugin subtype:
CType = list
list_type = feeddisplay_pi1
Copied!
TYPO3 v13.4 deprecates this subtype model and TYPO3 v14 requires plugins to be
registered as dedicated content element types. Feed Display therefore now uses:
CType = feeddisplay_pi1
Copied!
The extension provides the upgrade wizard feedDisplayCTypeMigration. Run it
after updating the extension in projects that already contain Feed Display
content elements. The wizard migrates existing tt_content records and backend
group permissions from the old list_type registration to the new CType.
The Upgrade module and CLI commands are available when TYPO3's Install system
extension is installed.
The Page TSconfig preview path changed accordingly:
Project-specific Page TSconfig or migration scripts that referenced the old
list_type must be adjusted to the new CType value.
Version-specific implementation notes
The code intentionally contains two TYPO3 version compatibility guards:
TYPO3 v14 can register a FlexForm directly with
ExtensionUtility::registerPlugin(), while TYPO3 v13 still needs
ExtensionManagementUtility::addPiFlexFormValue() for the same dedicated
CType. This guard avoids the TYPO3 v14 deprecation while keeping TYPO3 v13
fully supported.
The list-type-to-CType upgrade helper moved from the Install namespace in
TYPO3 v13 to the Core namespace in TYPO3 v14. The local abstract upgrade base
chooses the available parent class at runtime.
Date formatting uses formats compatible with PHP's
DateTimeInterface::format(). Existing project configuration using old
strftime() style percent formats should be changed, for example from
%d. %B %Y to d. F Y.
Add the Site Set Feed Display (erhaweb/feed-display).
Save the site configuration.
Tip
Existing projects that still use TypoScript template records can use
the static include Feed Display: Static TypoScript Include
(feed_display) as a fallback. Prefer the Site Set for TYPO3 v13/v14.
Create the plugin content element
Go to the page content module.
TYPO3 v13: Web → Page
TYPO3 v14: Content → Layout
In the pagetree view click on the page where you want the feed to be displayed.
Click the + Content button where you want the feed plugin content element to be placed.
Switch to the tab Plugins.
Select the Feed Display item.
In the tab General you may want to enter some general content information like a header.
Switch to tab Plugin.
Under Plugin Options → General → Feed URL enter the full URL of your Feed. (By default https://typo3.org/rss is used here.)
Click Save and Close.
Done
The feed output can be viewed in the frontend on the page where you
created the plugin.
Note
After upgrading from an older Feed Display version, run the upgrade wizard
feedDisplayCTypeMigration once. It migrates existing content elements
from CType = list / list_type = feeddisplay_pi1 to
CType = feeddisplay_pi1.
The recommended TYPO3 v13/v14 integration is the Site Set
erhaweb/feed-display. Assign it to your site configuration to load the
extension TypoScript and make the typed Site Settings available.
Backend path:
TYPO3 v13
TYPO3 v14
Site Management → Sites
Sites → Setup
The Site Set files live in EXT:feed_display/Configuration/Sets/FeedDisplay/.
Project-specific settings are stored by TYPO3 in
config/sites/<site-identifier>/settings.yaml.
Example
config/sites/<site-identifier>/settings.yaml
plugin.tx_feeddisplay_pi1.settings.feedUrl:'https://typo3.org/rss'plugin.tx_feeddisplay_pi1.settings.maxFeedCount:10plugin.tx_feeddisplay_pi1.settings.dateFormat:'d. F Y'
Copied!
Static TypoScript fallback
The extension still ships EXT:feed_display/Configuration/TypoScript/ for
projects that use TypoScript template records. Prefer the Site Set in new TYPO3
v13/v14 projects and avoid mixing both approaches unless the TypoScript record
is deliberately used for project-specific overrides.
TypoScript reference
The TypoScript shown here is loaded by the Site Set erhaweb/feed-display.
Projects using static TypoScript template records can use the same constants
through the legacy static include.
The following options are located under the following path:
plugin.tx_feeddisplay_pi1.view
Template root path
templateRootPath
templateRootPath
type
string
Default
empty
Path
plugin.tx_feeddisplay_pi1.view
In addition to the default path EXT:feed_display/Resources/Private/Templates/,
this constant can be used to define a custom template root path to overwrite
individual fluid files as needed.
Partial root path
partialRootPath
partialRootPath
type
string
Default
empty
Path
plugin.tx_feeddisplay_pi1.view
In addition to the default path EXT:feed_display/Resources/Private/Partials/,
this constant can be used to define a custom partial root path to overwrite
individual fluid files as needed.
Layout root path
layoutRootPath
layoutRootPath
type
string
Default
empty
Path
plugin.tx_feeddisplay_pi1.view
In addition to the default path EXT:feed_display/Resources/Private/Layouts/,
this constant can be used to define a custom layout root path to overwrite
individual fluid files as needed.
Settings
The following options are located under the following path:
plugin.tx_feeddisplay_pi1.settings
Use these settings if you want to define values globally for all Feed
Display Plugin content elements.
Remote http and https feeds are requested via TYPO3's HTTP client
stack, so TYPO3 proxy and related outbound HTTP settings apply
automatically. Local file paths use SimplePie's default
transport.
Maximum items
maxFeedCount
maxFeedCount
type
int
Default
10
Path
plugin.tx_feeddisplay_pi1.settings
Maximum feed items to show
Maximum content length
maxContentLength
maxContentLength
type
int
Default
500
Path
plugin.tx_feeddisplay_pi1.settings
Crop the characters of the feed content to the configured length
Maximum header length
maxHeaderLength
maxHeaderLength
type
int
Default
80
Path
plugin.tx_feeddisplay_pi1.settings
Crop the characters of the feed header to the configured length
Comma-separated list of fields to be read from the feed by SimplePie
and made available as variables in Fluid.
Please see the SimplePie feed reference
to find out which values can be used here. The Feed Display Extension
transforms each entry of the list into a getter function name.
For example item_quantity internally becomes get_item_quantity().
Some SimplePie methods expect parameters. For this reason, up to three
parameters can be passed via a special syntax. Use the "|" symbol to
append the parameters to the element name.
Comma-separated list of fields to be read from the feed items by
Please see the SimplePie feed item reference
to find out which values can be used here. The Feed Display Extension
transforms each entry of the list into a getter function name.
For example author internally becomes get_author().
As in getFields.feed
up to three parameters are supported.
Comma separated list of settings to be overridden by TypoScript if the
plugin settings value is either empty or 0.
Attention
This is the native Extbase property for frontend plugins in TYPO3 v13
and v14. It replaces the previous custom property
plugin.tx_feeddisplay_pi1.settings.overrideFlexformSettingsIfEmpty.
Please see the documentation of TypoScript constants.
Currently every TypoScript setup option can be defined there.
Page TSconfig
After the extension has been installed, it automatically adds Page TSconfig
from file EXT:feed_display/Configuration/page.tsconfig to register the
"Feed Display" content element in the New Content Element Wizard and to assign
the backend preview template.
Older Feed Display versions used CType = list and
list_type = feeddisplay_pi1. TYPO3 v13.4 deprecates that subtype model
and TYPO3 v14 expects the dedicated CType = feeddisplay_pi1. See
Compatibility for migration details.
Events
This extension provides exactly one PSR-14 event, which can be
used to easily change the data retrieved from a feed. This is especially
useful when the feed is a bit more complex.
Add an event listener
To use the event, you must first create an event listener class where you
use your own logic to modify the properties of the SimplePie items.
Finally, these custom properties can be used in Fluid:
<?phpdeclare(strict_types=1);
namespaceVendorName\Sitepackage\EventListener;
useErHaWeb\FeedDisplay\Event\SingleFeedDataEvent;
useTYPO3\CMS\Core\Attribute\AsEventListener;
#[AsEventListener(identifier: 'sitepackage/feed-display-listener')]finalclassSingleFeedDisplayListener{
publicfunction__invoke(SingleFeedDataEvent $event): void{
// Get the array of properties of the current SimplePie item
$itemProperties = $event->getItemProperties();
// Get the current SimplePie item
$feedItem = $event->getItem();
// Get the extension Settings
$settings = $event->getSettings();
// Get the current SimplePie feed
$feed = $event->getFeed();
// Make any changes to the item properties here, e.g.:foreach (['jobLocation', 'companyLogo', 'companyName'] as $extraField) {
$tag = $feedItem->get_item_tags('https://schemas.jobteaser.com/xml/joboffer', $extraField);
if (is_array($tag)) {
$itemProperties[$extraField] = trim((string)($tag[0]['data'] ?? ''));
}
}
// Set the item properties
$event->setItemProperties($itemProperties);
}
}
Copied!
Register the event listener without attributes
The attribute-based registration above is recommended for TYPO3 v13 and v14.
If you prefer YAML service tags, add the following lines to your
Configuration/Services.yaml file:
Since the above listener implementation has the event type in the method
signature, the event tag can be omitted. If you don't want to use
the FQCN as identifier for the event listener, you can additionally assign
any identifier via the identifier tag. For more information on
registering event listeners, see Registering the event listener via Services.yaml.
Note
Thanks to Georg Ringer for contributing this feature.
Templates
This chapter is all about templating EXT:feed_display
EXT:feed_display is using Fluid as template engine.
This documentation won't bring you all information about Fluid but only the
most important things you need for using it. You can get
more information in the section Fluid templates of the Sitepackage tutorial. A complete reference of Fluid ViewHelpers
provided by TYPO3 can be found in the ViewHelper Reference
Change the templates using TypoScript constants
As any Extbase based extension, you can find the templates in the directory
Resources/Private/.
By default, the following Fluid template files of this directory are used:
Page tree of directory EXT:feed_display/Resources/Private/
Make sure that you only copy the files for which you want to make changes.
This has the advantage that the remaining files will be automatically
updated with future extension updates. This way you only have to worry
about updating the files you have copied.
In TYPO3 v13/v14 projects using the Site Set, define your own Fluid paths as
Site Settings. Projects using static TypoScript records can still use the
constant editor under the TypoScript module:
TYPO3 v13: Site Management → TypoScript
TYPO3 v14: Sites → TypoScript
Constant Editor: Fluid Template Paths
Alternatively you can define the following TypoScript constants directly:
The following issues are known problems. However those are not fixable inside EXT:feed_display.
If you notice anything else feel free to open an issue on Github.
No feed items are displayed
Question:
I get the message "Sorry, no items could be fetched." in the frontend although the feed is available when I call the
feed URL directly. What could be the cause of this problem?
Answer:
Please verify that the feed is indeed being delivered reliably. I know of cases where the feed seemed to work initially,
but an error 500 occurred on some calls. If this error occurs sporadically, it could be that the memory size on the
system delivering the feed has been exceeded.
In this context, please note that the Feed Display extension itself caches the return. This means that in case of doubt
a faulty feed may persist for a longer period of time until the TYPO3 cache is cleared again, although a direct call to
the feed URL will work again.
If the feed is loaded from a remote http or https URL, also verify the
TYPO3 HTTP client configuration of the instance. Proxy requirements and
outbound network restrictions apply through TYPO3's PSR-17/PSR-18 interfaces,
so a blocked or incomplete TYPO3 HTTP setup can prevent feed retrieval.
ChangeLog
Please follow this link to know which bugs have been fixed in which version.
2026-05-06 [TASK] Update changelog for version 3.0.0 (Commit 5ed8e9d by Eric Harrer)
2026-05-06 [BUGFIX] Fix backend preview FlexForm rendering (Commit ddd5dc3 by Eric Harrer)
2026-05-06 [TASK] Make PHPStan happy for FlexForm registration (Commit b8e6e96 by Eric Harrer)
2026-05-06 [BUGFIX] Adjust FlexFormFieldValues test condition (Commit aa8afdc by Eric Harrer)
2026-05-06 [TASK] Suppress SimplePie PHP 8.5 IRI deprecations (Commit eddf14f by Eric Harrer)
2026-05-06 [TASK] Add backend preview template test (Commit 6bcaa7c by Eric Harrer)
2026-05-06 [BUGFIX] Fix backend preview for TYPO3 v13/14 (Commit 54f04be by Eric Harrer)
2026-05-06 [TASK] Update backend label keys (Commit efa3e00 by Eric Harrer)
2026-05-06 [BUGFIX] Fix typo in label (Commit 485dc54 by Eric Harrer)
2026-05-06 [BUGFIX] Handle SimplePie IRI null offset deprecations (Commit f8c436e by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
TYPO3 v12 support has been removed. Feed Display now supports TYPO3 v13.4
and TYPO3 v14.3.
The frontend plugin is now registered as dedicated content element type
feeddisplay_pi1 instead of the deprecated CType=list /
list_type=feeddisplay_pi1 combination.
The default date format changed from the old strftime() style
%d. %B %Y to the DateTimeInterface::format() style d. F Y.
Upgrade
Run the upgrade wizard feedDisplayCTypeMigration after updating existing
projects. The wizard migrates existing content elements and backend group
permissions from list_type=feeddisplay_pi1 to CType=feeddisplay_pi1.
Project-specific Page TSconfig must use the new preview path
mod.web_layout.tt_content.preview.feeddisplay_pi1.
All Changes
This is a list of all changes in this release:
2026-05-06 [DOCS] Update TYPO3 v13 and v14 documentation (Commit 56d6c23 by Eric Harrer)
2026-05-06 [TASK] Move feed icon height setting to general category (Commit f021d0a by Eric Harrer)
2026-05-06 [TASK] Add strict types to sys template override (Commit 03b305a by Eric Harrer)
2026-05-06 [TASK] Clarify legacy TypoScript include comments (Commit 4b35906 by Eric Harrer)
2026-05-06 [BUGFIX] Fix Fluid condition in feed display template (Commit d868657 by Eric Harrer)
2026-05-06 [BUGFIX] Fix feed display backend preview settings (Commit 8929708 by Eric Harrer)
2026-05-06 [TASK] Clean up functional test deprecation handling (Commit 59f7493 by Eric Harrer)
2026-05-06 [BUGFIX] UseDateTimeformatfordefaultdatesetting (Commit 09b7ea4byEricHarrer)
2026-05-06 [BUGFIX] RemovedeprecatedSimplePiefaviconhandling (Commite9891fabyEricHarrer)
2026-05-06 [TASK] MigrateFeedDisplayplugintoCType (Commit 6176030 byEricHarrer)
2026-05-05 [TASK] UpdatedependenciesandtestinfrastructureforTYPO3 13/14 (Commit 69cc1f8byEricHarrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2026-05-05 [DOCS] Fix documentation rendering errors (Commit 4f0ad97 by Eric Harrer)
2026-05-05 [TASK] Split static checks from test matrix (Commit f56fe09 by Eric Harrer)
2026-05-05 [TASK] Consolidate feed_display GitHub workflows (Commit de1c6dd by Eric Harrer)
2026-05-05 [TASK] Update TER publishing workflow (Commit 8a9a469 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2026-04-23 [TASK] Git-ignore IDE / editor metadata (Commit 4be57b7 by Eric Harrer)
2026-04-23 [TASK] Add missing declare(strict_types=1) (Commit b808e33 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2026-04-16 [BUGFIX] Narrow Tailor packaging excludes (Commit 0974209 by Eric Harrer)
2026-03-26 [TASK] Align Composer QA metadata (Commit 6e3c071 by Eric Harrer)
2026-03-26 [BUGFIX] Make test runner script executable (Commit 2e48e88 by Eric Harrer)
2026-03-26 [TASK] Align test runner help output (Commit 9b28b56 by Eric Harrer)
2026-03-26 [TASK] Remove and ignore Rector and Fractor lock files (Commit 2732b75 by Eric Harrer)
2026-03-26 [TASK] Align Tailor cleanup configuration (Commit bd5f95a by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2026-03-26 [TASK] Align release packaging and repository metadata (#13) (Commit 9640a9d by Eric Harrer)2026-03-26 [TASK] Add CI workflows and align test infrastructure (#12) (Commit 6e4ebb7 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2026-03-13 [BUGFIX] Normalize cached feed data for serialization (Commit 3bbdf0c by Eric Harrer)
2026-03-13 [BUGFIX] Verify TER artefacts before publishing (Commit e0d8c6f by Eric Harrer)
2026-03-11 [BUGFIX] Harden TER release workflow (Commit 95b46d5 by Eric Harrer)
2026-03-11 [BUGFIX] UsepreparedcommentinTERpublishstep (Commite84c344byEricHarrer)
2026-03-11 [BUGFIX] FixTERreleasebackfillworkflow (Commitb747281byEricHarrer)
2026-03-11 [TASK] AutomateTERreleasepublishing (Commit 1b55656byEricHarrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2024-10-25 [TASK] Refactor site set settings labels (Commit 4a494ae by Eric Harrer)
2024-09-05 [TASK] Run PHP CS Fixer and TYPO3 Fractor (Commit 1a4b619 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2024-07-04 [TASK] Switch to associated array keys for TCA item definition (Commit 31fd01f by Eric Harrer)
2024-07-04 [TASK] Move TypoScript files to Site Set directory (Commit b128bee by Eric Harrer)
2024-07-04 [TASK] Replace eval=int by TCA type number (Commit 7124865 by Eric Harrer)
2024-07-04 [TASK] Switch to associated array keys for TCA item definition (Commit f788c19 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2024-05-20 [FEATURE] Add configuration as Site Set (Commit 7b7f830 by Eric Harrer)
2024-05-20 [TASK] Add language label for view root paths (Commit b882485 by Eric Harrer)
2024-05-20 [BUGFIX] Useerrormessagefromsettingsifexists (Commit 338394abyEricHarrer)
2024-05-19 [BUGFIX] Fixpluginregistration (Commit 107ec0dbyEricHarrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
The former custom property plugin.tx_feeddisplay_pi1.settings.overrideFlexformSettingsIfEmpty has now been replaced by
the native property ignoreFlexFormSettingsIfEmpty.
If you have made changes to this property, you must migrate them to the new TypoScript path.
2024-01-29 [BUGFIX] Add SimplePie library bundle to fix execution in non-composer installations (Commit 568fb4b by Eric Harrer)
2024-01-29 [TASK] Update required simplepie library version to 1.8 (Commit 8d01428 by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2023-10-17 [DOCS] Add ChangeLog (Commit d9563bb by Eric Harrer)
2023-10-17 [BUGFIX] Fix empty tags in item content (Commit 1eb7744 by Eric Harrer)
2023-10-17 [BUGFIX] Fix display of items links (Commit b86b9d7 by Eric Harrer)
2023-10-17 [BUGFIX] Wrap item enclosures only if at least one exists (Commit 9731214 by Eric Harrer)
2023-10-17 [BUGFIX] Useitemidforlistitemsidattributeonlyifavailable (Commit 97ff1a5byEricHarrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2023-10-10 [TASK] Increase the version number to 1.3.2 (Commit 49e0d6a by Eric Harrer)
2023-10-10 [DOCS] Fix alternative texts for screenshots (Commit b2d5a3a by Eric Harrer)
2023-10-10 [DOCS] Update README.md (Commit 2eb8a05 by Eric Harrer)
2023-10-10 [DOCS] Add known problem (Commit 7c0ddea by Eric Harrer)
2023-10-02 Update Crowdin configuration file (Commit 5a73ae6 by Eric Harrer)
2023-04-14 [TASK] Adjust version number in docs and ext_emconf.php (Commit cbb80dc by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2023-04-14 [DOCS] Fix version and release numbers (Commit a12fe00 by Eric Harrer)
2023-04-12 [DOCS] Update copyright year (Commit 82045cf by Eric Harrer)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2023-04-12 [TASK] Increase the version number to 1.3.0 (Commit 4a1b670 by Eric Harrer)
2023-04-12 [FEATURE] Provide an event to modify feed data (Commit f88518c by Georg Ringer)
2023-04-12 [TASK] Replace the author's name "Bode" with "Harrer" (Commit d0a5e31 by Eric Harrer)
2022-12-23 [DOCS] Remove accidentally created lines (Commit 6b92c41 by Eric Bode)
2022-12-22 [DOCS] Remove unnecessary blank lines (Commit a364ba8 by Eric Bode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2022-12-22 [DOCS] Add centralized documentation on docs.typo3.org in reST format (Commit f8473b2 by Eric Bode)
2022-12-22 [TASK] Update backend labels (Commit f65b100 by Eric Bode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2022-11-09 [TASK] Increase the version number to 1.1.2 (Commit 6ca99bc by Eric Bode)
2022-11-09 [BUGFIX] Use "dateFormat" pluginsettingasdateformatinfluidtemplate (Commit 61f9f75byEricBode)
2022-10-20 [BUGIFX] Fixcaseoftranslation (Commitb5041b9byEricBode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2022-10-19 [TASK] Increase the version number to 1.0.3 (Commit 9113f65 by Eric Bode)
2022-10-19 [BUGFIX] Fixed warning about missing static TypoScript includeand added new error messages (Commit c7b389c by Eric Bode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2022-10-19 [BUGFIX] Prevent deprecation message from SimplePie function in PHP 8.1 (Commit bad3662 by Eric Bode)
2022-10-19 [DOCS] Fix typo in README.md (Commit 32a87a2 by Eric Bode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
2022-10-19 [DOCS] Update composer keywords and plugin description label (Commit ff7f971 by Eric Bode)
2022-10-19 [DOCS] Update main README.md file (Commit 92d2e81 by Eric Bode)
2022-10-19 [BUGFIX] Restore compatibility with TYPO3 11 (Commit 0345947 by Eric Bode)
2022-10-19 Add constant editor configuration (Commit ea7b62b by Eric Bode)
2022-10-19 Add current development state (Commit e07e79b by Eric Bode)
2022-10-15 first commit (Commit 965d4eb by Eric Bode)
Copied!
This list has been created by using git log $(git describe --tags --abbrev=0)..HEAD --abbrev-commit --pretty='%ad %s (Commit %h by %an)' --date=short.
Sitemap
Index
Reference to the headline
Copy and freely share the link
This link target has no permanent anchor assigned.The link below can be used, but is prone to change if the page gets moved.