?>
                               </div>
                               <!-- Organizer logo section end  -->
                               
                               <!-- Organizer description start -->                              
		    	   	            <h3  class="section-title"><?php 
_e('About', 'gam-event-manager');
?>
 <?php 
echo display_organizer_name();
?>
</h3>                          
                           	    <div class="text-justify"><?php 
echo get_organizer_description();
?>
</div>
                               <!-- Organizer description end-->
                               
                               <?php 
if (attendees_can_apply()) {
    ?>
                        			<?php 
    get_event_manager_template('event-registration.php');
    ?>
                        	   <?php 
}
?>
                               
                               <?php 
do_action('single_event_listing_button_start');
?>
 * Display or retrieve the current event ticket price information with optional content.
 *
 * @access public
 * @param mixed $id (default: null
 * @return void
 */
function display_event_ticket_option($before = '', $after = '', $echo = true, $post = null)
{
    $event_ticket_option = get_event_ticket_option($post);
    if (strlen($event_ticket_option) == 0) {
        return;
    }
    $event_ticket_option = esc_attr(strip_tags($event_ticket_option));
    $event_ticket_option = $before . $event_ticket_options . $after;
    if ($echo) {