Use event name for title on detail page.
<!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>-->
<!-- AddThis Button END -->
</div><!--/#addthis_wrapper-->
- <?php echo "<h1>" . get_the_title() . "</h1>"; ?>
- </div>
+ <?php
+ if ( glm_is_event_detail() ) {
+ echo '<h1>'.glm_get_event_name().'</h1>';
+ } else {
+ echo "<h1>" . get_the_title() . "</h1>";
+ }
+ ?>
+ </div>
<?php if(have_posts()) : while(have_posts()): the_post();?>
<?php the_content();?>
<?php endwhile; else:?>
<p><?php _e('Sorry, no results found.');?></p>
<?php endif;?>
</div>
-
-
+
+
</div>
</div>
<?php get_footer(); ?>
Author: Gaslight Media
Author URI: http://www.gaslightmedia.com
Description: A theme for MackinacBridgeAuthority
-Version: 1.0.25
+Version: 1.0.26
*/