Please note that this documentation is for the most recent version of this extension. It may not be relevant for older versions. Related documentation can be found in the documentation directory of the extension.
Display solution for the "Fahrzeugsuche" TYPO3 extension
The Vehicle Search Display is a standalone presentation view that allows you to showcase vehicles automatically and continuously on a screen — for example in a showroom, shop window, at the reception desk, in a waiting area, or at trade fairs. Each slide shows exactly one vehicle in a large format. The display runs through all vehicles in an endless loop and automatically reloads after a complete cycle, ensuring that changes and newly added vehicles are reliably applied.
Optionally, a QR code can be shown for each vehicle. It links directly to the vehicle detail view (including all features and specifications) and enables interested customers to send an enquiry immediately — ideal for quickly turning passive attention into real leads.
Configuration
- Create a new page on which you want to set up the display soloution. This page should be excluded from the website search and also from be excluded from crawling by search engines.
- Create a root template on that page. Activate "Clear constants", "Clear setup" and "Rootlevel" in the "options" tab. Add the following constants and setup typoscript:
Constants
themes.configuration.container.fahrzeugsuche = 123,124
(replace 123 resp. 124 with the IDs of the folders where your vehicle data is stored)
Setup
plugin.tx_fahrzeugsuche.settings.accounts.12345.id = 12345
plugin.tx_fahrzeugsuche.settings.accounts.123456.id = 123456
config.absRefPrefix = /
config.no_cache = 1
page.config.no_cache = 1
page {
includeJSLibs {
jQuery = https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js
jQuery.external = 1
}
}
(repace 12345 resp. 12346 with the IDs of the accounts you want to show vehicles from)
- Include the static templates Fluid Content Elements (fluid_styled_content) und Fahrzeugsuche Display (fahrzeugsuche_pro) ein.
- Switch to the page module and create a plugin of type Fahrzeugsuche Display in colomun .
The display solution should now be ready to use.
Provide settings for the FlexForm configuration of the plugin
You can filter the vehicles displayed in the plugin to certain makes. Add the following TypoScript to the page properties at "Resources" -> "Page TSConfig":
TCEFORM.tt_content.pi_flexform.fahrzeugsuchepro_fahrzeugsuchedisplay.sDEF {
settings\.makes {
addItems {
MERCEDES-BENZ = Mercedes Benz
SMART = Smart
SKODA = Skoda
VW = VW
}
}
}
After that you can select the desired makes. Only vehicles from this makes will be displayed.
