mage-eventpress/templates/themes/theme-1.php

69 lines
2.9 KiB
PHP
Raw Normal View History

2018-07-02 05:44:24 -04:00
<?php
// Template Name: Springfield
// Settings Value :::::::::::::::::::::::::::::::::::::::;
$hide_date_details = mep_get_option( 'mep_event_hide_date_from_details', 'general_setting_sec', 'no');
$hide_time_details = mep_get_option( 'mep_event_hide_time_from_details', 'general_setting_sec', 'no');
$hide_location_details = mep_get_option( 'mep_event_hide_location_from_details', 'general_setting_sec', 'no');
$hide_total_seat_details = mep_get_option( 'mep_event_hide_total_seat_from_details', 'general_setting_sec', 'no');
$hide_org_by_details = mep_get_option( 'mep_event_hide_org_from_details', 'general_setting_sec', 'no');
$hide_address_details = mep_get_option( 'mep_event_hide_address_from_details', 'general_setting_sec', 'no');
$hide_schedule_details = mep_get_option( 'mep_event_hide_event_schedule_details', 'general_setting_sec', 'no');
$hide_share_details = mep_get_option( 'mep_event_hide_share_this_details', 'general_setting_sec', 'no');
$hide_calendar_details = mep_get_option( 'mep_event_hide_calendar_details', 'general_setting_sec', 'no');
2018-07-02 05:44:24 -04:00
?>
<div class="mep-event-detailsss mep-event-theme-1">
<div class="mep-top-part">
<div class="mep-left-col">
<?php do_action('mep_event_thumbnail'); ?>
</div>
<div class="mep-right-col">
<div class="mep-event-title-header">
<?php do_action('mep_event_title'); ?>
<?php if($hide_org_by_details == 'no') do_action('mep_event_organizer'); ?>
2018-07-02 05:44:24 -04:00
<?php do_action('mep_event_price'); ?>
<?php if($hide_total_seat_details == 'no') do_action('mep_event_seat'); ?>
<?php if($hide_calendar_details == 'no') do_action('mep_event_add_calender'); ?>
2018-07-02 05:44:24 -04:00
</div>
</div>
</div>
<?php do_action('mep_event_map'); ?>
<div class="mep-btn-part">
<div class="mep-left-col">
<?php if($hide_share_details == 'no') do_action('mep_event_social_share'); ?>
2018-07-02 05:44:24 -04:00
</div>
<div class="mep-right-col">
<?php if($hide_schedule_details == 'no'){ ?>
2018-07-02 05:44:24 -04:00
<div class="mep-event-datetime">
2018-10-31 05:47:54 -04:00
<h3><?php _e('Date and Time:','mage-eventpress'); ?></h3>
2018-07-02 05:44:24 -04:00
<?php do_action('mep_event_date'); ?>
</div>
<?php } ?>
2018-07-02 05:44:24 -04:00
</div>
</div>
<div class="mep-content-part">
<div class="mep-left-col">
<div class="mep-event-details">
2018-10-31 05:47:54 -04:00
<h3 class="mep-desc-title"><?php _e('Description','mage-eventpress'); ?></h3>
2018-07-02 05:44:24 -04:00
<?php do_action('mep_event_details'); ?>
2018-07-05 06:10:06 -04:00
<div class="mep-theme1-faq-sec">
<?php do_action('mep_event_faq'); ?>
</div>
2018-07-02 05:44:24 -04:00
</div>
</div>
<div class="mep-right-col">
<div class="mep-reg-btn-sec">
<div class="cart-btn-sec">
<?php do_action('mep_add_to_cart') ?>
</div>
</div>
<?php if($hide_location_details == 'no'){ ?>
2018-07-02 05:44:24 -04:00
<div class="mep-event-location">
2018-10-31 05:47:54 -04:00
<h3><?php _e('Event Location:','mage-eventpress'); ?></h3>
2018-07-02 05:44:24 -04:00
<?php do_action('mep_event_location') ?>
</div>
<?php } ?>
2018-07-02 05:44:24 -04:00
</div>
</div>
</div>