1,951 questions
0
votes
1
answer
64
views
Context-specific default constant values
I'd like to define an API endpoint URL through a TypoScript constant, so that it can be overridden by editors.
At the same time I want to provide different default constant values depending on the ...
0
votes
1
answer
71
views
What to do when a siteset is missing / depends on invalid site sets?
I have created an new siteset for my site-package extension,
but in Site Settings Ovverview I jsut see this error:
This site depends on invalid site sets
Site set 'my-vendor/my-set' is disabled: ...
1
vote
1
answer
57
views
Nested variables in FLUIDTEMPLATE
It's possible to pass variables from TypoScript into fluid page templates as follows:
page {
10 = FLUIDTEMPLATE
10 {
variables {
headline = TEXT
headline.value =...
2
votes
1
answer
206
views
Getting TypoScript from Backend (non-Controller)
A very similar question has already been asked here. I tried to comment to emphasize, but I am not allowed. I tried asking my question in an answer there, but it was deleted instantly. Understandable, ...
1
vote
1
answer
54
views
TYPO3 solr index custom database fields
TYPO3 version: 12.4
EXT:solr version: 12.0.5
I have a TYPO3 site with Solr indexing for pages and news. I also have a product database which I want to search in as well. I tried adding the table to my ...
0
votes
0
answers
110
views
How to get a database query in the order it was given?
I have a database query getting an array of frontend groups.
The problem is the array comes back ordered by UID. How do I make the order the same as the uidInList it was given?
10 = TYPO3\CMS\Frontend\...
0
votes
1
answer
80
views
Integrate a form from EXT:form with typoscript in a fluidtemplate
I have a TYPO3 v12 instalation and in a fluid template that has no page content, only data composed of constants i need to integrate a small subscription form, I cannot get anything to work, the ...
1
vote
1
answer
66
views
How to nest SplitProcessors in TYPO3?
I need to split a string by line and then by |.
Initially, I used a CommaSeparatedValueProcessor with fieldDelimiter = | which works with simple strings, but now the strings contain " and ' for ...
0
votes
2
answers
114
views
TYPO3 v11 SEO Sitemap has a limit to 1000 pages - how i can raise the limit
I have created a sitemap at:
https://www.lumedis.de/?sitemap=pages&type=1533906435
I have now published 1200 pages. However, the sitemap has a limit of 1000 pages. How can I increase this limit?
I ...
1
vote
0
answers
62
views
Typo3 bootstrap_HTML Tag changes my video tag to entity
I just upgraded my TYPO3 installation from 11 to 12 and now I am facing the fact that the HTML element inside my Carousel is changing my video tag to entities when I save my changes. I already looked ...
0
votes
1
answer
88
views
TYPO3 News IMG_RESOURCE gives error on first call for sys_category images selected with overwriteDemand
I have a page with a news plugin that gives only news of a chosen category, in the sidebar of that page I use the image that is loaded for the category, i do that this way:
# cat detail page Images
...
0
votes
1
answer
81
views
TYPO3 set Google Analytics tag based on domain with typoscript
I have a multidomain where I'd like to set the individual Google Analytics tag with typoscript setup (TYPO3 V11).
I start with constants.typoscript:
myExt {
googleAnalytics {
default = G-SITE1
...
1
vote
1
answer
61
views
Can I set a typoscript lib depending on the presence of a register value?
I have the task, to display a certain breadcrumb path if a special register value is set.
I tried to access these register-values directly in fluid but they seem not to be evaluatable (conditions with ...
-1
votes
1
answer
66
views
How to render text from a custom database table into the page head?
I have a TYPO3 v13.2.1 website and I want to add data from a custom database table into a pages head tag.
Currently I am attempting
page.headerData {
10 = CONTENT
10 {
table = my_custom_table
...
1
vote
1
answer
196
views
How to use the MenuProcessor to render the rootline of a specific page?
Is there a simple way to use the TYPO3\CMS\Frontend\DataProcessing\MenuProcessor to render the rootline (breadcrumb) for a specific page instead of the current one?
Mixing special = rootline and ...
2
votes
1
answer
374
views
TYPO3 RTE - allowedClasses is TSconfig have no effect
I'm using TYPO v12.4. On a specific page of my website when I edit the "Page TSconfig" field with just one line:
RTE.default.proc.allowedClasses := addToList(custom, rowmax25, btn, btn-sm)
...
2
votes
2
answers
207
views
TYPO3 - Render extension plugin output via Typoscript
I'm using TYPO3 13.1.1 and I delevoped a custom extension in order to display on the front-end side some stuff generated by one of my extension Controller.
-> My extension was installed via ...
1
vote
2
answers
328
views
TYPO3 - Typoscript: How to get a field from tt_content as value into lib.contentElement?
In tt_content I added a new field in my sitepackage. Purpose: Add a css-class in the rendered content element. Now I have the problem how to get the value of this field into the typoscript setup.
# ...
0
votes
1
answer
462
views
TYPO3 Extension install with composer - but not detected
I'm launching a new website with TYPO3 13.1, using WAMP. I need to create a custom local extension in order to store all my custom controllers, models, viewhelpers, files etc...
I am in "...
0
votes
0
answers
134
views
Is there any way to have content of mask elements in respected pages while creating distribution in typo3 version 11,12?
While creating new distribution in typo3 v11 and 12, pagetree imports fluid content element by own but mask elements came with blank fields..! Below i attach 2 screenshots of fluid content element and ...
0
votes
1
answer
141
views
Typo3 contact form
I need help and hope I'm at the right place.
In TYPO3, I have a contact form that I use on my website for contacts where a website user can send an inquiry by filling out fields for email address, ...
0
votes
1
answer
128
views
TYPO3 - typoscript - special = directory if more then one
i search for a solution, how can i switch the special = directory to special = list if i have more then 1 selected page (in the field = overviewnavigation_pages).
here my normal typoscript ...
0
votes
1
answer
535
views
TYPO3 Fluid: How to get selected page categories in fluid
I spent hours on this problem. I wanted to access the selected categories of my page in TYPO3 Fluid, but there is no default way to do that.
0
votes
1
answer
259
views
Get all categories from a page into a data attribute in typoscript
In a TYPO3 project I want to collect all subpages with content and categories and render it on rootpage.
lib.dynamicContent = COA
lib.dynamicContent {
10 = CONTENT
10 {
table = pages
...
0
votes
2
answers
232
views
My page doesn't recognize my Extbase plugin Controller
I am trying to add a plugin to my extension using Extbase.
I am able to add the plugin in the backend interface, but adding it does not take effect, and the controller is not recognized and am getting ...
0
votes
2
answers
153
views
How do I get current FE language in where clause in DatabaseQueryProcessor in TYPO3?
I want a condition to get data, language wise in FE. I don't know how to get current language uid in a where clause in DatabaseQueryProcessor.
I tried different approaches to achieve this, but it ...
1
vote
2
answers
940
views
TYPO3 Oops, an error occurred! Code: 202402180809040864ba5c
I have an error in TYPO3 when i try to show data on my Page.
I Try to connect to my DDEV db.
In my additional.php:
'DB' => [
'Connections' => [
'Default' => [
'dbname' => 'db',
...
0
votes
1
answer
150
views
TYPO3 v12.4 How do I change the entryLevel in HMENU if the currenty level has no items?
can someone explain to me, why this TypoScript doesn't work in version 12.4 anymore. I am updating from 7.6 and thought treeLevel -> tree.level was the only change in this regard.
here is my code:
...
0
votes
1
answer
95
views
How to use tt_content.uid when outputting a field with inline type in TypoScript Typo3-11.5?
I have created a countries plugin that extends tt_content. In setup.typoscript I output the fields like this:
tt_content.countries {
fields {
content {
fields {
...
0
votes
2
answers
220
views
TYPO3 12 News backlink to list view section
I'm currently running TYPO3 12 on my one page website, which includes a news section. To get to the news section you have to scroll down a bit. This is fine so far. The problem is with the backlink in ...
0
votes
0
answers
400
views
TYPO3 page doesn't show up at front end. Error 500 - No TypoScript record found
I am quite a newbie to TYPO3 but like to test it very much for publishing web sites. Do have some basic knowledge about building web sites with HTML, Javascript and CSS.
Now I'd like to see which nice ...
0
votes
0
answers
56
views
Limited localisation/multilingualism in TYPO3
TYPO3 11. PHP 8.1.
There is a big project where there was no multilingualism until now. A new language is to be added (DE), but only for the news extension. A language switcher is also to be ...
0
votes
1
answer
717
views
TYPO3: get and display all file categories in fluid
TYPO3 11.5.33
Task
I want to display every category title of a pdf file in a comma separated list in a table column.
I have the content element of CType = uploads and inside I have a ...
0
votes
1
answer
147
views
Usage of cObject EXTBASEPLUGIN without caching (USER_INT)
I wonder if it is possible to use the cObject "EXTBASEPLUGIN" (available since TYPO3 12.3) without caching (USER_INT). In the documentation, only an example with cOcject "USER" is ...
2
votes
2
answers
84
views
Meta tag with dot in key is not recognized
Microsoft would like to find this tag in my <head> part:
<meta name="msvalidate.01" content="5..............................Z" />
So I write:
page.meta {
msvalidate....
0
votes
1
answer
286
views
For some reason typoscript is not creating symlink to my Public folder
After i added my typoscript page logic like the following:
config {
contentObjectExceptionHandler = 0
}
page = PAGE
-- some code ---
page.includeJSFooter {
jquery = https://code.jquery.com/...
0
votes
1
answer
145
views
TYPO3 bootstrap-package SectionMenu not working for news
I am struggling with the MenuSection content element from the bootstrap-package for TYPO3 v12 (composer-based). On the news detail page I have a MenuSection content element that does not render the ...
0
votes
1
answer
119
views
TypoScript's stdWrap.replacement does not replace in combination with insertData
What is missing, when trying to replace an inserted string using TypoScript?
10 = TEXT
10 {
value = {path: EXT:myext/Resources/Public/index.html}
insertData = 1
stdWrap.replacement.10 {
...
0
votes
1
answer
191
views
How can I render an image stored in a custom page properties tab?
I am building a main navigation in TYPO3 12 with drop down menus that contain images for each subpage. I added a custom tab 'Navigation' to the page properties, where I upload that image. What I do ...
0
votes
1
answer
125
views
Include css file with changing hash number via includeCss
I want to include my main.css file via includeCss in the setup.typoscript. Maybe there is a better option?
includeCSS {
svelte_demo_layout = EXT:svelte_demo/Resources/Public/...
0
votes
1
answer
143
views
typosscript from 7.6 not compatilbe with typoscript 12.4.7 - not inserting the content
I tried to move to Typo3 12.4.7 and have problems in converting the typoscript, which works fine under ver 7.6.X
The Screen could be obtained, when I change the following lines in the ver 7.6.X ...
0
votes
1
answer
503
views
How can I debug a Typoscript in Typo3 version 12.4.5.?
I had a working Typoscript Layout for my website under Typo3 7.X and after upgrading to Typo3 version 12.4.5 the TS do not work again. Only a white site is beeing displayed. How can I debug the TS ...
0
votes
0
answers
88
views
Assign gridelements layout template filename from DB to FLUIDTEMPLATE - upgrading from LTS 9.5 to LTS 10.4
I was using an old version of TYPO3 (9.5). I'm upgrading to newer version 10-12.
I'm struggling with this code snippet to upgrade the TEMPLATE=file section (deprecated LTS 9.5).
I get error message &...
0
votes
3
answers
106
views
Assign backend layout template file to FLUIDTEMPLATE
I was using an old version of TYPO3 (9.5). I'm upgrading to newer version 10-12.
I'm struggling with this code snippet to upgrade the TEMPLATE=file section.
I know TEMPLATE=file is no longer supported....
3
votes
3
answers
1k
views
TYPO3 TemplateService deprecation: how to get plugin typoscript? (NOT in FE context and WITHOUT extbase)
In V12 the TemplateService and TypoScriptParser classes have been marked as deprecated (#99020 - Deprecate TypoScript/TemplateService). The migration advice given there is very scarce (FE scope with ...
0
votes
2
answers
213
views
Typo3 News use first image of news as hero on page outside of the extension
I'm trying to get an image of a news in the detail view. I'd like to use it in another section of my layout. I would need it outside the news extension. So I tried:
7 = TYPO3\CMS\Frontend\...
1
vote
1
answer
95
views
Read data from tt_address and render a table. Table remains empty
i have a test enviroment with the intro-package, ods_osm and tt_address installed. on one page i want to show a table with marker data from tt_address (which is also used in the map). I am still ...
1
vote
1
answer
466
views
$GLOBALS['TYPO3_REQUEST']->isFrontend return null
I have a error in frontend on my subpages.
Argument 1 passed to TYPO3\CMS\Core\Http\ApplicationType::fromRequest() must
implement interface Psr\Http\Message\ServerRequestInterface, null given
It's ...
2
votes
1
answer
352
views
TYPO3 v12: Trigger Action Over URL Parametes + ShortenURLs
I'm trying to get an old plugin to work in TYPO3 v12 that shows a list of already send newsletters.
I am new to TYPO3 so I don't really understand how the controllers work.
The list view for the ...
1
vote
3
answers
507
views
TYPO3 12: Set TypoScript constant as integer
So I'm currently updating a TYPO3 website from v11 to v12 and I've run into a problem I can't seem to fix. In my fluid template I'm generating a filter form using AJAX. To do that I'm assigning the ...