I need to not display the Category and Tag displays on the event pages, ie:
http://sf.iabc.com/ai1ec_event/become-an-opportunity-maker/?instance_id=256
I would rather not hack into the core files because of updates. But even then i hardly know where to look here. Anyone w/ suggestions?
http://wordpress.org/extend/plugins/all-in-one-event-calendar/
@timjo
You will have to edit the following file: app/view/event-single.php
Perfect!
Thanks Tons!
This is definately a feature (on/off) i would like to see added. Otherwise I will be forever updating this as updates come in.
But in mean time, Thanks Tons!
PS: this is awesome pluggin. My client loves it and uses it almost exclusively. http://sf.iabc.com
Grateful for your help.
May have spoke too soon on solution above.
tag, cat Lables and cat Values are gone but tag Values are still displaying.
ie:
http://sf.iabc.com/ai1ec_event/bonfire-branding-program/?instance_id=
I have commented out both tag and cat w/ no effect ie:
`<tr>
<?php /*?><?php if( $categories ): ?>
<th scope="row" class="ai1ec-categories"><?php _e( 'Categories:', AI1EC_PLUGIN_NAME ) ?></th>
<td class="ai1ec-categories"><?php echo $categories ?></td>
<?php endif ?><?php */?>
</tr>
<tr>
<th scope="row" class="ai1ec-tags">
<?php /*?><?php if( $tags ): ?>
<?php _e( 'Tags:', AI1EC_PLUGIN_NAME ) ?>
<?php endif ?><?php */?>
</th>
<td class="ai1ec-tags"><?php /*?><?php echo $tags ?><?php */?></td>
</tr>`