Reputation: 593
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
}
}
Upvotes: 0
Views: 151
Reputation: 593
Thank you Bernd,
Then i have changed the code to this :
hidebox = TEXT
hidebox {
data = page : showbox
}
Upvotes: 0
Reputation: 10790
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
Upvotes: 1