Hey all... I could really use some help.
I'm currently using GigPress to populate the schedule page on my site (www.ogtempura.com). I set up a custom template with the following code:
<tbody class="vevent">
<tr class="gigpress-row <?php echo $class; ?>">
<td class="gigpress-date">
<?php echo $showdata['date_long']; ?><BR><?php echo $showdata['time']; ?>
</td>
<td class="gigpress-city summary">
<B><?php echo $showdata['venue']; ?></B><BR><?php echo $showdata['address_plain']; ?>, <?php echo $showdata['city']; ?>
</td>
<td class="gigpress-venue location">
<?php echo $showdata['related_link']; ?>
</td>
</tr>
</tbody>
It displays correctly on the schedule page when viewing in a standard browser. However, when I view the page w/ WPTouch on my iPhone 4, the formatting seems to revert back to the original with a bunch of extra information I don't want to display.
What do I need to edit to fix this?
Thanks!
Sam