64 lines
2.4 KiB
PHP
64 lines
2.4 KiB
PHP
<?php
|
|
// Template Name: Franklin
|
|
|
|
|
|
|
|
|
|
|
|
// 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');
|
|
|
|
?>
|
|
<div class="mep-template-2-hamza">
|
|
<div class="mep-tem2-title">
|
|
<?php do_action('mep_event_title'); ?>
|
|
</div>
|
|
<?php if($hide_schedule_details == 'no'){ ?>
|
|
<div class="mep-tem2-date">
|
|
<?php do_action('mep_event_date'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
<div class="mep-tem2-thumbnail">
|
|
<?php do_action('mep_event_thumbnail'); ?>
|
|
</div>
|
|
|
|
<div class="mep-tem2-details">
|
|
<?php do_action('mep_event_details'); ?>
|
|
<?php if($hide_calendar_details == 'no') do_action('mep_event_add_calender'); ?>
|
|
</div>
|
|
<div class="tem2-carts">
|
|
<div class="tem2-cart-sec">
|
|
<?php do_action('mep_event_price'); ?>
|
|
<?php if($hide_total_seat_details == 'no') do_action('mep_event_seat'); ?>
|
|
<?php do_action('mep_add_to_cart') ?>
|
|
</div>
|
|
<div class="tem2-faq-sec">
|
|
<?php do_action('mep_event_faq'); ?>
|
|
</div>
|
|
</div>
|
|
<div class="mep-tem2-venue">
|
|
<div class="tm2-location">
|
|
<?php if($hide_org_by_details == 'no'){ ?>
|
|
<h3><?php _e('Organizer:','mage-eventpress'); ?></h3>
|
|
<?php do_action('mep_event_organizer'); } if($hide_address_details == 'no'){ ?>
|
|
<h3><?php _e('Venue:','mage-eventpress'); ?></h3>
|
|
<?php do_action('mep_event_location'); } ?>
|
|
</div>
|
|
<div class="tm2-map">
|
|
<?php do_action('mep_event_map'); ?>
|
|
</div>
|
|
</div>
|
|
<?php if($hide_share_details == 'no'){ ?>
|
|
<div class="tm2-share-button">
|
|
<?php do_action('mep_event_social_share'); ?>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|