[TYPO3] Best approach to pass a parameter over a website

2007-12-13 Thread Karol Martinka
Hello, I'm looking for a way, how to pass a GET parameter between all pages, since I would like to split the web for different businesses : 1. Individual 2. SME 3. Enterprise I have several separated news messages in those categories and also, I have different text blocks based on the category, t

[TYPO3] Best approach to pass a parameter over a website

2007-12-13 Thread Karol Martinka
Hello, I'm looking for a way, how to pass a GET parameter between all pages, since I would like to split the web for different businesses : 1. Individual 2. SME 3. Enterprise I have several separated news messages in those categories and also, I have different text blocks based on the category, t

[TYPO3] Problem with typolink?! (page:uid works, but the number not) PLS

2007-12-13 Thread Karol Martinka
Hello, I have a weird problem with typolink. The following code WORKS correctly : subparts.FOOTER_TEXT23 { value = Contact typolink.parameter.data = page:uid wrap = {$konstanty.footertext2} | {$konstanty.footertext3} } but this code not! (non-working) : subparts.FOOTER_TEXT23 { value = Con

[TYPO3] Complicated documentation? No reference guide? Do you know any good documentation?

2007-12-13 Thread Karol Martinka
Hello, I'm wondering, if you agree with me, that almost all of the documentation to TYPO3 is really non-intuitive. There is lot of text, but there aren't simple and quick explanations as in other references are (e.g. the well-known guides for C++, JAVA etc. or even as the guide written in earl

[TYPO3] SOLVED ! Re: Problem with typolink?! (page:uid works, but the number not) PLS

2007-12-13 Thread Karol Martinka
Just without the data in the "typolink.parameter.data" : Correct : typolink.parameter=12 Karol "Karol Martinka" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I have a weird problem with typolink. The following code WORKS cor

Re: [TYPO3] Complicated documentation? No reference guide? Do you know any good documentation?

2007-12-14 Thread Karol Martinka
aring ONE site and maybe I will do ONE more, and that's all... And I think, after two-three months of inactivity, I would not be able to read the code again :)).. Have a nice day and thank you!! Karol "Dmitry Dulepov [typo3]" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PRO

Re: [TYPO3] Complicated documentation? No reference guide? Do youknow any good documentation?

2007-12-14 Thread Karol Martinka
Try THIS : subparts.FOOTER_TEXT23 = TEXT subparts.FOOTER_TEXT23 { typolink.parameter={$konstanty.contactID} wrap = {$konstanty.footertext2} | {$konstanty.footertext3} Explanation : {$konstanty.contactID} - the ID of the page you would like to link to .. (you can replace it by ID number.. I'v

[TYPO3] How to write TYPOLINK without the wrap ??

2007-12-14 Thread Karol Martinka
Hello, I would like to substitue in HTML template the text with LINK. How to achieve this? Template : Blabla Typoscript (wrong) : marks.MAIN_LINK = TEXT marks.MAIN_LINK.typolink{ parameter={$konstanty.mainpageID} } How to pass only the link, not the whole http://lists.netfielders.de/cgi-bin/

Re: [TYPO3] How to write TYPOLINK without the wrap ??

2007-12-14 Thread Karol Martinka
Ahh, found. sorry. You have to add "returnLast = url" parameter to Typolink. However, while the template is parsed, the "prefix" as "fileadmin/... " is kept :( Do you maybe know, how to override it? Is it possible? Thanks Karol "Karol Martinka" <[EMAI

[TYPO3] Rootline weird behavior?

2007-12-14 Thread Karol Martinka
Hello, I have a problem - in the "rootline" menu, I can't see the 'titlepage' (the main homepage), which has different template.. Is this normal behavior ? The structure is like : Home > Products > Product A (Home has different template than Products and Product A) The menu shows only : Prod

Re: [TYPO3] Rootline weird behavior?

2007-12-14 Thread Karol Martinka
Hello, again - self answer - it was my mistake - I had "Rootlevel" tag set on the 2nd template (used in Products page) Karol "Karol Martinka" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I have a problem - in the "rootline&qu

[TYPO3] CONTENT - remove all CSS styles inside

2007-12-14 Thread Karol Martinka
Hello, I've written this code : subparts.CONTENT_STORY_IMAGE = CONTENT subparts.CONTENT_STORY_IMAGE { table = tt_content select.orderBy = sorting select.where = ((colPos=0) and (CType='image')) } It is intended for a page, where on the beginning should be a image, which has to be placed as a con

Re: [TYPO3] CONTENT - remove all CSS styles inside

2007-12-15 Thread Karol Martinka
uot;better" way, how to configure the default styles, please? I mean, I would like to set my specific styles for basic layout formatting instead of using the default ones.. Thanks in advance!! Karol "Dmitry Dulepov [typo3]" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

Re: [TYPO3] CONTENT - remove all CSS styles inside

2007-12-15 Thread Karol Martinka
3 generates. I don't need the "special wrapping" and formatting.. I will RTFM about this CSS extension and I hope, I will learn how to use it.. Sorry for bothering you and thanks for the tips and any further hints you may have. Karol "Dmitry Dulepov [typo3]" <[EMAIL PR

[TYPO3] Show menu title (current page) only if the MENU has been filled (is not empty)

2007-12-15 Thread Karol Martinka
Hello, I have this code : 20 = HMENU 20.special = directory 20.stdWrap.dataWrap = {page : title}| 20.1 = TMENU 20.1.NO { allWrap = | } I would like to show the dataWrap only if the menu has entries.. That means, I need a menu with header, which will be displayed, only if the menu has e

Re: [TYPO3] Show menu title (current page) only if the MENU has been filled (is not empty)

2007-12-15 Thread Karol Martinka
Again answered by myself :)) You have to move the "wrap" from HMENU in to TMENU ... 20 = HMENU 20.special = directory 20.1 = TMENU 20.1.stdWrap.dataWrap = {page : title}| 20.1.NO { allWrap = | Karol "Karol Martinka" <[EMAIL PROTECTED]> wrote in message news

[TYPO3] Dynamically choose the right template using TEMPLATE COA IF - HOW TO

2007-12-16 Thread Karol Martinka
Hello, I have this code, which works, except that I'm unable to process the template on the end at all :)) (below the line temp.mainTemplate { - the code is skipped) - Btw. I think the problem might be the association - highlighted in RED. But how to repair it, please? I don't want to duplicate

Re: [TYPO3] Dynamically choose the right template using TEMPLATE COA IF - Is this the right solution??

2007-12-16 Thread Karol Martinka
relPathPrefix = fileadmin/templates/ } } } It works, but is it correct?? Any suggestions? Thanks Karol "Karol Martinka" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello, I have this code, which works, except that I'm unable to process the temp

[TYPO3] Condition IF with OR in menu - or at least, if the menu has only one entry, it shouldn't be displayed.

2008-01-19 Thread Karol Martinka
Hi, below is my code.. It is a menu, with special formated header, which shows the pages on the same level. This works fine, however how can I hide the menu (the whole 5=COA), if the menu has only ONE item - the "CUR" item? Something like "menuitemcount" property? But also with a "OR" in the pr