Hi Charles,
I am enjoying tinkering with this a bit more. I have made a little change on a couple of places that I think should be part of the code. I have added to the english lang file around line197 to add:
define('_mxCalendar_ed_start_timeformat', '<strong> %I:%M %P</strong>'); and then using it in the mxCalendar.class.php file around line 1115 to add that as a placeholder
$modx->setPlaceholder('mxCalendar_ed_start_timeformat',strftime((isset($param['mxCalendar_ed_start_timeformat']) ? $param['mxCalendar_ed_start_timeformat'] : _mxCalendar_ed_start_timeformat),strtotime( (isset($_REQUEST['r']) ? $dates[$_REQUEST['r']].' '.$p_val['starttime'] : $p_val['start']) )));
so that you can use it in the event.detail.html like this:
[+mxcEventDetailBackToCal+]
<div id="[+mxcEventDetailId+]" class="[+mxcEventDetailClass+]">
<h3>[+mxcEventDetailTitle+]</h3>
<p>Date: [+mxcEventDetailStartDateTime+]</p>
<p>Time: [+mxCalendar_ed_start_timeformat+]</p>
<p class="repeat">[+mxcEventDetailDateTimeReoccurrences+]</p>
<h2>[+mxcEventDetailLabelLocation+]</h2>
<p>
[+mxcEventDetailLocation+]
</p>
<p>[+mxcEventDetailDescription+]</p>
<p>[+mxcEventDetailGoogleMap+]</p>
</div>
Hope this helps someone else.
-Noah