Mohamed Masmoudi
Mohamed Masmoudi

Reputation: 593

Delete slide from TypoScript variable

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

Answers (2)

Mohamed Masmoudi
Mohamed Masmoudi

Reputation: 593

Thank you Bernd,

Then i have changed the code to this :

hidebox = TEXT
hidebox {
   data = page : showbox
}

Upvotes: 0

Bernd Wilke πφ
Bernd Wilke πφ

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

Related Questions