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 = sys_language_uid
 }
}
temp.addcol5.wrap=<div class="content middle"> | </div>

I want to wrap the content only if there are any records in the database. How can I achieve this?

link|improve this question

55% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You may want to try

temp.addcol5.stdWrap {
  wrap= <div class="content middle"> | </div>
  required =1
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.