69 lines
3.4 KiB
PHP
69 lines
3.4 KiB
PHP
<?php
|
|
// Template Name: Virtual Event Theme
|
|
|
|
// 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');
|
|
$speaker_status = mep_get_option('mep_enable_speaker_list', 'general_setting_sec', 'no');
|
|
?>
|
|
|
|
<div class="mep-default-theme mep_flex default_theme">
|
|
<div class="mep-default-content">
|
|
<div class="mep-default-title">
|
|
<?php do_action('mep_event_title'); ?>
|
|
</div>
|
|
<div class="mep-default-feature-image">
|
|
<?php do_action('mep_event_thumbnail'); ?>
|
|
</div>
|
|
<div class="mep-default-feature-content">
|
|
<?php do_action('mep_event_details'); ?>
|
|
</div>
|
|
<div class="mep-default-feature-cart-sec">
|
|
<?php do_action('mep_add_to_cart',get_the_id()) ?>
|
|
</div>
|
|
<div class="mep-default-feature-faq-sec">
|
|
<?php do_action('mep_event_faq',get_the_id()); ?>
|
|
</div>
|
|
</div>
|
|
<div class="mep-default-sidebar">
|
|
<div class="df-sidebar-part">
|
|
<?php if ($hide_total_seat_details == 'no') { ?>
|
|
<div class="mep-default-sidrbar-price-seat">
|
|
<div class="df-seat"><?php do_action('mep_event_seat'); ?></div>
|
|
</div>
|
|
<?php } ?>
|
|
<?php if ($hide_org_by_details == 'no') { ?>
|
|
<div class="mep-default-sidrbar-meta">
|
|
<i class="fa fa-link"></i> <?php do_action('mep_event_organizer'); ?>
|
|
</div>
|
|
<?php } if($speaker_status == 'yes'){ ?>
|
|
<div class="mep-default-sidebar-speaker-list">
|
|
<?php do_action('mep_event_speakers_list',get_the_id()); ?>
|
|
</div>
|
|
<?php
|
|
}
|
|
if ($hide_schedule_details == 'no') { ?>
|
|
<div class="mep-default-sidrbar-events-schedule">
|
|
<?php do_action('mep_event_date_default_theme',get_the_id()); ?>
|
|
</div>
|
|
<?php }
|
|
if ($hide_share_details == 'no') { ?>
|
|
<div class="mep-default-sidrbar-social">
|
|
<?php do_action('mep_event_social_share'); ?>
|
|
</div>
|
|
<?php }
|
|
if ($hide_calendar_details == 'no') { ?>
|
|
<div class="mep-default-sidrbar-calender-btn">
|
|
<?php do_action('mep_event_add_calender',get_the_id()); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</div>
|