0
votes

I want to delete the slide function from my TypoScript varaible. What should I remove exactly?

hidebox = TEXT
hidebox {
    value =
    override {
        required = 1
        data = levelfield : -1 , showbox, slide
    }
}
2
It would be useful if you could describe your goal in more plain words not directly referring to TypoScript features. Then you are more likely to get an answer. - Mathias Brodala

2 Answers

1
votes

all the slide is given with:

data = levelfield : -1 , showbox, slide

to remove the sliding you have to change it to the simple field access:

field = showbox
0
votes

Thank you Bernd,

Then i have changed the code to this :

hidebox = TEXT
hidebox {
   data = page : showbox
}