[TYPO3-seminars] Timeslots configuration detail page

Niels Pardon typo3_lists at niels-pardon.de
Thu Dec 2 14:41:37 CET 2010


Hi Michael!

Am 02.12.2010 14:19, schrieb MLVB - Michael Göbl:
> thank for your tip. still i am not able to remove the columns
> "timeslot_room" and the column "timeslot_entry_date". There are no
> marker like that in the HTML-Template.
> 
> It seems that all three colums are substituted in one coulum (Marker
> named: TIMESLOT_PLACE).
> 
> Hope there ist someone who has a hint for me!

If you take a look at the pi1/seminars_pi1.tmpl file in current seminars
(0.9.2) there's the following chunk:

<!-- ###FIELD_WRAPPER_TIMESLOTS### -->
<h3>###LABEL_TIMESLOTS###</h3>
<table cellpadding="0" cellspacing="0" class="tx-seminars-pi1-timeslots">
	<thead>
		<tr>
			<th scope="col">###LABEL_TIMESLOT_DATE###</th>
			<th scope="col">###LABEL_TIMESLOT_TIME###</th>
			<th scope="col">###LABEL_TIMESLOT_ENTRY_DATE###</th>
			<th scope="col">###LABEL_TIMESLOT_ROOM###</th>
			<th scope="col">###LABEL_TIMESLOT_PLACE###</th>
			<th scope="col">###LABEL_TIMESLOT_SPEAKERS###</th>
		</tr>
	</thead>
	<tbody>
		<!-- ###SINGLE_TIMESLOT### -->
		<tr>
			<td>###TIMESLOT_DATE###</td>
			<td>###TIMESLOT_TIME###</td>
			<td>###TIMESLOT_ENTRY_DATE###</td>
			<td>###TIMESLOT_ROOM###</td>
			<td>###TIMESLOT_PLACE###</td>
			<td>###TIMESLOT_SPEAKERS###</td>
		</tr>
		<!-- ###SINGLE_TIMESLOT### -->
	</tbody>
</table>

<!-- ###FIELD_WRAPPER_TIMESLOTS### -->


Put a copy of that file somewhere in your fileadmin folder and adjust
the path in TypoScript setup. Just remove the column heading in <thead>
and the corresponding column in <tbody> in the copied file. It's all there.

Greets,

Niels


More information about the TYPO3-project-seminars mailing list