The typoscript tag has no wiki summary.
6
votes
1answer
404 views
What is the best way to debug Typoscript in TYPO3 CMS?
What is the best way to debug typoscript in the TYPO3 CMS?
Assuming I have a list, which is not displayed -
what is the strategy to look for the issue?
4
votes
3answers
149 views
Create a numeric navigation
How do I create a menu which automatecaly names the involved page into a numeric navigation?
This would be my page tree:
News
|--- Newsarticle tom (contains 9 content elements)
|--- Skeet's stuff ...
4
votes
3answers
741 views
TypoScript: get page title by page id
Task1. In TypoScript I need to get a page title for a given page id {$my_page_uid}
Task2. This page title should be recieved according to the current language
I need this title in the form like ...
4
votes
5answers
311 views
Typo3 external typoscript editor?
Can anyone recommend an external text editor for Typo3 that handles typoscript color coding breakdowns and auto-suggests for code completion?
3
votes
1answer
403 views
TYPO3 / TypoScript: How to make a fallback?
I want to output a string to the rendered HTML by using two fallbacks.
My typoscript is defined at the top level page (root page of my website) and is passed to all pages at lower levels.
Structure:
...
3
votes
2answers
328 views
How can I compress my js/css files in Typo3
how can I compress (minify) my JavaScript and CSS files dynamically in Typo3?
Thanks
3
votes
3answers
553 views
add a space char in Typoscript
I would like to add a blank/whitespace in TypoScript
It concerne a "More"-link in tt_news.
Here's the HTML I have :
<p class="bodytext">blablabla<span ...
2
votes
1answer
85 views
How can I send a HTTP status code with typoscript?
When certain conditions meet I'd like to send the user a "403 Forbidden" HTTP status code, but I couldn't find any possibility in typoscript to modify the HTTP header. Am I missing something or is ...
2
votes
2answers
291 views
Is it possible to compare variables in TypoScript?
Is it possible to compare variables in TypoScript? If it is possible - then how?
1
vote
1answer
28 views
Typo3 USER / userFunc and caching
Ist there a way to set the maximal cache time for a USER object? (not sure if its really called object..)
The only thing i found was COA_GO - which is COA with user defined cache time - but the ...
1
vote
1answer
99 views
Typoscript IMAGE object: disable height/width attributes
Is there any way to prevent typo3/typoscript IMAGE object from adding the dimension attributes (height and width) to the generated image tag?
UPDATE (Thanks to cascaval)!
The solution is to use ...
1
vote
2answers
147 views
Typo3 4.6 include extbase plugin with typoscript
i have TYPO3 4.6, in tempvoila template i have typoscript object path lib.header and i want
to redirect output of plugin to lib.header
i have extension Gallery and plugin written and configured in ...
1
vote
2answers
14 views
How to erase the searchform, on the search results page, of indexed_search?
I tried to just erase the html markup from the indexed_search template file, this does work fine, until I found out that this causes a Javascript error where I can not use the numeric navigation. ...
1
vote
2answers
78 views
Begin and Max values configurables (TypoScript - CONTENT)
I'm doing a kind of paginator in TS...
I'm doing a select, but I need to confugre (from a GP:var) the begin (to set the "begin" page) value... But I dont find a way to do that...
I have been looking ...
1
vote
1answer
125 views
Render CONTENT in PHP with TypoScript
I need to build a Typoscript file in PHP and then pretty much execute the script to get the content of a given page.
This is my Code:
if (!defined('PATH_typo3conf')) die ('Could not access this ...
1
vote
1answer
209 views
tt_news: Modify image src
In order to be able to use lazy loading, I need to modify the src attribute of tt_news' image output like so:
<img src="/foo/bar/baz.png" … /> // <-- before
<img ...
1
vote
1answer
77 views
How can i do conditional wrap in Typoscript?
I am rendering the content using following typo script.
temp.addcol5 = CONTENT
temp.addcol5 {
table = tt_content
select {
pidInList = this
orderBy = sorting
where = colPos = 5
languageField = ...
1
vote
1answer
78 views
RTE should not wrap a <p> tag around an <img> tag
I work with the RTE and it makes me angry that the RTE does wrap <p> tags around an <img> tag. What do I have to do that the RTE does not wrap <p> tags around the <img> tag?
1
vote
1answer
170 views
Typoscript: how to select a set of subpages or how to make a condition based on page id
Currently I'm working with PIDinRootline. This works fine.
[PIDinRootline=8,9]
//do something
[end]
[PIDinRootline=6,7,11]
//do something
[end]
Now I want to address a set of subpages ...
1
vote
1answer
105 views
Typo3: Using Page-Constants in HMENU / TMENU
on a Page Template, I set a constant, such as
yl.page.backgroundColor = #ff0000
Now, is there a way to access the BackgroundColor-Value of a menu item, that is rendered by TMENU? I was thinking ...
1
vote
2answers
142 views
Typo3: How to insert the page title automatically into an img alt tag and into rtetextarea
Say we have a Text/Images record and go to "Images & Captions" and then to "Alternative Labels (one per line)".
I would like something like this: "this is the alt image info for
...
1
vote
2answers
130 views
Typo3: How to insert the Page Title dynamically into the Description meta tag
Using the Introduction Package 4.5
(Not templa voila)
The page.meta template sets the meta tag 'description' in Setup:
page.meta {
description = {$plugin.meta.description}
}
. . . and the ...
1
vote
1answer
73 views
Generic tables Backend editor in TYPO3?
I'm looking for some generic tables Backend editor in TYPO3. I have plenty of DB tables and I need to make them editable by Backend User. I have tried to find some extension but without luck:( Do I ...
1
vote
1answer
224 views
Typo3: problem with restricted access page
I have a link pointing to restricted page. When i access the link directly in logout status, its redirect to 404. Actually it should redirect to login form.
I tried:
config {
...
1
vote
1answer
288 views
Typoscript navigation setup
I am new to typo3 and I have to setup a navigation. I have already done the tutorials found at Timerate and I have built the demo navigation (week 2 in the tutorial).
Now I have to setup a navigation ...
1
vote
2answers
991 views
Typo3: display content from first sub-page using typoscript
This is what I want to do: on a given page, I want to display all content elements of the first child page of a given page. I cannot simply use a shortcut page, because I need to display other content ...
1
vote
2answers
265 views
Unable to access Typo3 extension TSconfig in code
So i've just wrote my first extension for Typo3. I started off with the Kickstarter and everything went fine.
I want to start using templates now but I'm unable to access the TSconfig data from code. ...
1
vote
1answer
249 views
RealURL: Correct strategy for menus and link to front page?
The Scenario
I have a website with several autogenerated menus:
Main menu ("root level" pages)
Tree menu (full tree down to current page)
Breadcrumb (only .ACT)
Now I see two possibilities ...
1
vote
1answer
382 views
How to negate conditional validation in TYPO3>Typoscript>Formhandler?
I would like to check whether a field has a value other than "MasterValue". is it true then it must be another field tested for the validation.
But the assignment operator "!=" does not work. With ...
1
vote
1answer
296 views
Typoscript: How to create a popup-dialog that controls a browser-/useragent-switch
I have a question regarding Typocript, because I want to realize the follwoing in Typo3:
A user visits a website (with his IPhone) that is based on Typo3 (Version 4.3)
The user gets a popup dialog ...
1
vote
5answers
1k views
extbase mapping to an existing table doesn't work
I've extended the pages table and now I want to use some of the data in a domain object called "Tags".
So I tried the following in the /Configuration/TypoScript/setup.txt:
...
0
votes
2answers
23 views
How to select a random image from files in a directory using typoscript?
I'm using Typo3 4.5.3 and I have image files in a directory from which I want to randomly select one to display on the current page, but I can't seem to get the typoscript right to make listnum = rand ...
0
votes
1answer
13 views
scale down images with timthumb through adding typoscript to templavoila (data processing)
I want to have two different image sizes: One for the normal browser and one for the mobile version. I thought I could use timthumb to resize the image.
Therefore I mapped in Templavoila an Image ...
0
votes
1answer
36 views
TYPO3 - How is the content of typoscript setup handled?
If i do a mysql-select within the ts-setup and call the result of this select in, lets say, three extensions placed on the same site, does that still mean, that this certain mysql-select is done ...
0
votes
0answers
33 views
Typo3 sr_feuser_register e-mail template not working img tag
i have to change the default confirmation emial template in sr_feuser_register ext, i'd changed succesfully every markers content but i have to insert an image into the html email and it don't want to ...
0
votes
1answer
57 views
Typoscript: If page is not equal to
I'm trying to include a typoscript on the child pages of the page it's included on.
On page id 272 I have included in the setup a typoscript file:
<INCLUDE_TYPOSCRIPT: ...
0
votes
1answer
63 views
Display TMENU.2 even if it has no submenu points (but content)
This may sound strange, but I have a menu where the first page has no real subpages. However, it has an appended COA with 2 custom TMENU's and a plugin insertion.
But: The subnavigation for this ...
0
votes
1answer
45 views
Use an image in more than one field in a FCE
I created two fields in templavoila and want to access the image url (data object) from the other field.
field1 - typoscript - type: image:
10 = IMG_RESOURCE
10.file.import = uploads/tx_templavoila/
...
0
votes
1answer
42 views
Using media field from Page in an extension
We all may know the following snippet that gets the first entry of the media field of a page to e.g. display a header image on a page.
10 = IMAGE
10.file {
import = uploads/media/
import.data = ...
0
votes
1answer
47 views
newb: typo3 access uploaded images in typoscript
I'm trying to do something like in this Tutorial, a very basic gallery.
In the example of the Tut they load images from uploads/media/ like so
page.10.marks.PROJECTTHUMBNAIL = IMG_RESOURCE
...
0
votes
1answer
51 views
Typo3 with TemplaVoila missing Backend Content View
After setting up TemplaVoila like ever i end up in this view.
I set up TV with the wizard. all example pages and content elements were there (i deleted them after)
but they werent visible in Page ...
0
votes
1answer
42 views
Use CSS Styled Content's default rendering typoscript but erase the divs around it
lib.inhalt = COA
lib.inhalt {
10 < styles.content.get
10.stdWrap.append < styles.content.getRight
10.stdWrap.append {
wrap = ...
0
votes
1answer
48 views
How to modify an special aspect of css styled content without overwriting it global?
I have two markers. Content and Article - both take use of CSC and it does work well. NOW I want to use a <li> tag instead of a <div class="csc-header"> tag in the Content subpart marker. ...
0
votes
1answer
106 views
TYPO3: how to add an element to the RTE, which allows the user to use a defined CSS class
I want that the user should be able to select an textstyle in RTE like Detail, Important, Name of person and so on. So I would like to define a CSS and this option should be shown in RTE. The CSS ...
0
votes
1answer
54 views
Is it possible to get $_COOKIE with TypoScript?
In TypoScript exists the possibility to get the environment variable HTTP_COOKIE_VARS (which is deprecated):
10 = TEXT
10.data = global : HTTP_COOKIE_VARS | some_cookie
I got this from the ...
0
votes
2answers
62 views
How to make a date query? (Where = date > 01-01-2011)
Is there a way in Typo3 to query the date in an elegant way?
I experimentet with the *tt_content* field date and I find out that the date is saved as a 10 character long integer.. I thought it is in ...
0
votes
1answer
26 views
Why does it not orderby = date?
In the backend I filled out the date field for several content elements in this format 24-12-2011.
In the database of typo3 the date value looks like this: 1293836400
I want to render some content ...
0
votes
1answer
31 views
Indexed_search extension where is the div “tx-indexedsearch-whatis” created?
I want to modify the content which is marked into the div with the class "tx-indexedsearch-whatis". I searched for this div in the standard template file and I did not find it. I guess the mark code ...
0
votes
1answer
109 views
Typo3: adds anchor but don't know why
I have a page content element on a page. This has the ID 3 and it has a translation. This element is read out with the following Typoscript
lib.marker = RECORDS
lib.marker {
tables=tt_content
...
0
votes
1answer
90 views
how to hide a marker or content parts if no content in typo3
i got a template with a marker ###whatever### its set as TEXT and filled with .value
i need to hide or empty the marker IF one of the columns are empty (in my case the normal column colPos=0)