version 3.3.2

This commit is contained in:
magepeopleteam 2020-08-05 12:06:45 +00:00
parent afeb24ee00
commit 5f4c968c1b
66 changed files with 1923 additions and 116 deletions

View File

@ -60,6 +60,10 @@ if (!class_exists('MAGE_Events_Setting_Controls')) :
array(
'id' => 'label_setting_sec',
'title' => __('Translation Settings', 'mage-eventpress')
),
array(
'id' => 'carousel_setting_sec',
'title' => __('Carousel Settings', 'mage-eventpress')
)
);
@ -102,6 +106,36 @@ if (!class_exists('MAGE_Events_Setting_Controls')) :
'default' => 'dashicons-calendar-alt'
),
array(
'name' => 'mep_event_cat_label',
'label' => __('Event category Label', 'mage-eventpress'),
'desc' => __('If you want to change the event category label in the dashboard menu you can change here', 'mage-eventpress'),
'type' => 'text',
'default' => 'Category'
),
array(
'name' => 'mep_event_cat_slug',
'label' => __('Event Category Slug', 'mage-eventpress'),
'desc' => __('Please enter the slug name you want for event category. Remember after change this slug you need to flush permalink, Just go to Settings->Permalink hit the Save Settings button', 'mage-eventpress'),
'type' => 'text',
'default' => 'mep_cat'
),
array(
'name' => 'mep_event_org_label',
'label' => __('Event Organizer Label', 'mage-eventpress'),
'desc' => __('If you want to change the event category label in the dashboard menu you can change here', 'mage-eventpress'),
'type' => 'text',
'default' => 'Organizer'
),
array(
'name' => 'mep_event_org_slug',
'label' => __('Event Organizer Slug', 'mage-eventpress'),
'desc' => __('Please enter the slug name you want for event category. Remember after change this slug you need to flush permalink, Just go to Settings->Permalink hit the Save Settings button', 'mage-eventpress'),
'type' => 'text',
'default' => 'mep_org'
),
array(
'name' => 'mep_google_map_type',
@ -719,6 +753,58 @@ if (!class_exists('MAGE_Events_Setting_Controls')) :
'desc' => __('Select a color for FAQ Title Text', 'mage-eventpress'),
'type' => 'color',
),
)
),
'carousel_setting_sec' => apply_filters('mep_settings_carousel_arr',array(
array(
'name' => 'mep_load_carousal_from_theme',
'label' => __('Load owlCarousel From Theme', 'mage-eventpress'),
'desc' => __('If your theme Carousel stop working or in your theme already loaded the OWL Carousel Lib, then you can set this yes?', 'mage-eventpress'),
'type' => 'select',
'default' => 'no',
'options' => array(
'yes' => 'Yes',
'no' => 'No'
)
),
array(
'name' => 'mep_autoplay_carousal',
'label' => __('Auto Play', 'mage-eventpress'),
'desc' => __('Please select Carousel will auto play or not.', 'mage-eventpress'),
'type' => 'select',
'default' => 'yes',
'options' => array(
'true' => 'Yes',
'false' => 'No'
)
),
array(
'name' => 'mep_loop_carousal',
'label' => __('Infinite Loop', 'mage-eventpress'),
'desc' => __('Please select Carousel will Infinite Loop or not.', 'mage-eventpress'),
'type' => 'select',
'default' => 'yes',
'options' => array(
'true' => 'Yes',
'false' => 'No'
)
),
array(
'name' => 'mep_speed_carousal',
'label' => __('Carousel Auto Play Speed', 'mage-eventpress'),
'desc' => __('Please Enter Carousel Auto Play Speed, Default 5000', 'mage-eventpress'),
'type' => 'text',
'default' => '5000'
),
)
)

View File

@ -65,6 +65,7 @@ function mep_addon_list_sec(){
top: auto;
}
</style>
<?php
$json = file_get_contents('http://vaincode.com/update/addon-list.json');
$obj = json_decode($json, true);

View File

@ -36,7 +36,7 @@ function mep_add_admin_scripts($hook)
/**
* Enquue Admin Styles
*/
wp_enqueue_style('mage-jquery-ui-style', plugin_dir_url(__DIR__) . 'css/jquery-ui.css', array());
wp_enqueue_style('mage-options-framework', plugin_dir_url(__DIR__) . 'css/mage-options-framework.css');
wp_enqueue_style('jquery-ui', plugin_dir_url(__DIR__) . 'css/jquery-ui.css');
@ -68,14 +68,15 @@ function mep_add_admin_scripts($hook)
add_action('wp_enqueue_scripts', 'mep_event_enqueue_scripts', 90);
function mep_event_enqueue_scripts()
{
$owlThemeLoad = mep_get_option('mep_load_carousal_from_theme', 'carousel_setting_sec', 'no');
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-datepicker');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-accordion');
wp_enqueue_style('mep-jquery-ui-style', plugin_dir_url(__DIR__) . 'css/jquery-ui.css', array());
wp_enqueue_style('mep-event-style', plugin_dir_url(__DIR__) . 'css/style.css', array());
wp_enqueue_style('mep-event-owl-carousal-main-style', plugin_dir_url(__DIR__) . 'css/owl.carousel.min.css', array('mep-event-style'));
wp_enqueue_style('mep-event-owl-carousal-default-style', plugin_dir_url(__DIR__) . 'css/owl.theme.default.min.css', array('mep-event-style'));
wp_enqueue_style('mep-event-timeline-min-style', plugin_dir_url(__DIR__) . 'css/timeline.min.css', array('mep-event-style'));
wp_enqueue_style('font-awesome-css-cdn-5.2.0', "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.2.0/css/all.min.css", null, 1);
wp_enqueue_style('font-awesome-css-cdn', "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css", null, 1);
@ -83,9 +84,18 @@ function mep_event_enqueue_scripts()
wp_enqueue_script('mep-moment-js', plugin_dir_url(__DIR__) . 'js/moment.js', array(), 1, true);
wp_enqueue_script('mep-calendar-scripts', plugin_dir_url(__DIR__) . 'js/calendar.min.js', array('jquery', 'mep-moment-js'), 1, false);
wp_enqueue_script('mep-mixitup-min-js', plugin_dir_url(__DIR__) . 'js/mixitup.min.js', array(), 1, true);
wp_enqueue_script('mep-owl-carousel-min', plugin_dir_url(__DIR__) . 'js/owl.carousel.min.js', array('jquery'), 1, true);
wp_enqueue_script('mep-timeline-min', plugin_dir_url(__DIR__) . 'js/timeline.min.js', array('jquery'), 1, true);
wp_enqueue_script('mep-event-custom-scripts', plugin_dir_url(__DIR__) . 'js/mkb-scripts.js', array(), 1, true);
wp_localize_script('jquery', 'mep_ajax', array( 'mep_ajaxurl' => admin_url( 'admin-ajax.php')));
if($owlThemeLoad == 'no'){
wp_enqueue_style('mep-event-owl-carousal-main-style', plugin_dir_url(__DIR__) . 'css/owl.carousel.min.css', array('mep-event-style'));
wp_enqueue_style('mep-event-owl-carousal-default-style', plugin_dir_url(__DIR__) . 'css/owl.theme.default.min.css', array('mep-event-style'));
wp_enqueue_script('mep-owl-carousel-min', plugin_dir_url(__DIR__) . 'js/owl.carousel.min.js', array('jquery'), 1, true);
}
}

View File

@ -35,7 +35,7 @@ add_meta_box( 'mep-event-rest-count-sec', __('Event Reset Booking Count','mage-e
add_meta_box( 'mep-event-rich-text', __('<span class="dashicons dashicons-admin-generic" style="color:green; padding-right:10px;"></span>Event Rich text','mage-eventpress'), 'mep_event_rich_text_meta_box_cb', 'mep_events', 'normal', 'high' );
add_meta_box( 'mep-event-rich-text', __('<span class="dashicons dashicons-admin-generic" style="color:green; padding-right:10px;"></span>Event Rich text','mage-eventpress'), 'mep_event_rich_text_meta_box_cb', 'mep_events', 'normal', 'low' );
}
@ -67,7 +67,7 @@ function mep_event_rich_text_meta_box_cb($post){
<li><b>End Date:</b><br/> <?php if($event_end_date){ echo get_mep_datetime($event_end_date,'date-time-text'); } ?></li>
<li><b>Event Status:</b><br/>
<select style="" id="mep_rt_event_status" name="mep_rt_event_status" class="select short">
<option value="EventScheduled" <?php if($event_rt_status=='EventScheduled'){ echo 'Selected'; } ?>>Event Scheduled</option>
<!-- <option value="EventScheduled" <?php if($event_rt_status=='EventScheduled'){ echo 'Selected'; } ?>>Event Scheduled</option> -->
<option value="EventRescheduled" <?php if($event_rt_status=='EventRescheduled'){ echo 'Selected'; } ?>>Event Rescheduled</option>
<option value="EventMovedOnline" <?php if($event_rt_status=='EventMovedOnline'){ echo 'Selected'; } ?>>Event Moved Online</option>
<option value="EventPostponed" <?php if($event_rt_status=='EventPostponed'){ echo 'Selected'; } ?>>Event Postponed</option>

View File

@ -36,6 +36,7 @@ function mep_add_custom_fields_text_to_cart_item($cart_item_data, $product_id, $
$validate = mep_cart_ticket_type('validation_data', $total_price,$product_id);
// echo '<pre>';
// print_r($user);
// print_r($ticket_type_arr);

View File

@ -8,6 +8,7 @@ require_once(dirname(__DIR__) . '/lib/classes/class-taxonomy-edit.php');
require_once(dirname(__DIR__) . '/lib/classes/class-theme-page.php');
require_once(dirname(__DIR__) . '/lib/classes/class-menu-page.php');
require_once(dirname(__DIR__) . "/inc/class/mep_settings_api.php");
require_once(dirname(__DIR__) . "/inc/welcome.php");
require_once(dirname(__DIR__) . "/inc/mep_cpt.php");
require_once(dirname(__DIR__) . "/inc/mep_tax.php");
require_once(dirname(__DIR__) . "/inc/mep_event_meta.php");
@ -18,7 +19,7 @@ require_once(dirname(__DIR__) . "/inc/admin_setting_panel.php");
require_once(dirname(__DIR__) . "/inc/mep_enque.php");
require_once(dirname(__DIR__) . "/inc/mep_user_custom_style.php");
require_once(dirname(__DIR__) . "/inc/mep_tax_meta.php");
require_once(dirname(__DIR__) . "/inc/mep_addon_list.php");
// require_once(dirname(__DIR__) . "/inc/mep_addon_list.php");
require_once(dirname(__DIR__) . "/inc/mep_upgrade.php");
require_once(dirname(__DIR__) . "/inc/mep_functions.php");
require_once(dirname(__DIR__) . "/inc/mep_query.php");

View File

@ -3,6 +3,8 @@ if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
appsero_init_tracker_mage_eventpress();
// Language Load
add_action( 'init', 'mep_language_load');
if (!function_exists('mep_language_load')) {
@ -344,8 +346,7 @@ function mep_attendee_create($type,$order_id,$event_id,$_user_info = array()){
$ticket_qty = $_user_info['ticket_qty'];
}elseif($type == 'user_form'){
$uname = $_user_info['user_name'];
$email = $_user_info['user_email'];
$phone = $_user_info['user_phone'];
@ -480,10 +481,12 @@ if (!function_exists('mep_attendee_extra_service_create')) {
$order = wc_get_order( $order_id );
$order_meta = get_post_meta($order_id);
$order_status = $order->get_status();
if($order_status != 'failed'){
$form_position = mep_get_option( 'mep_user_form_position', 'general_attendee_sec', 'details_page' );
if($form_position=='checkout_page'){
foreach ( $order->get_items() as $item_id => $item_values ) {
$item_id = $item_id;
@ -515,6 +518,7 @@ if (!function_exists('mep_attendee_extra_service_create')) {
}
}
}
}else{
foreach ( $order->get_items() as $item_id => $item_values ) {
$item_id = $item_id;
@ -549,7 +553,7 @@ if (!function_exists('mep_attendee_extra_service_create')) {
}
do_action('mep_after_event_booking',$order_id,$order->get_status());
}
}
}
@ -874,35 +878,7 @@ if (!function_exists('change_wc_event_product_status')) {
}
echo mep_get_event_status($event_date);
break;
case 'mep_atten' :
$multi_date = get_post_meta($post_id,'mep_event_more_date',true) ? get_post_meta($post_id,'mep_event_more_date',true) : array();
$recurring = get_post_meta($post_id, 'mep_enable_recurring', true) ? get_post_meta($post_id, 'mep_enable_recurring', true) : 'no';
// print_r($multi_date);
// if($recurring == 'yes'){
?>
<form action="" method="get">
<?php
if($recurring == 'everyday'){
do_action('mep_before_attendee_list_btn',$post_id);
}else{
?>
<select name="ea_event_date" id="" style='font-size: 14px;border: 1px solid blue;width: 110px;display:<?php if($recurring == 'yes'){ echo 'block'; }else{ echo 'none'; } ?>'>
<option value="<?php echo date('Y-m-d H:i:s',strtotime(get_post_meta($post_id,'event_start_date',true).' '.get_post_meta($post_id,'event_start_time',true))); ?>"><?php echo get_mep_datetime(get_post_meta($post_id,'event_start_date',true),'date-text').' '.get_mep_datetime(get_post_meta($post_id,'event_start_date',true).' '.get_post_meta($post_id,'event_start_time',true),'time'); ?></option>
<?php foreach($multi_date as $multi){ ?>
<option value="<?php echo date('Y-m-d H:i:s',strtotime($multi['event_more_start_date'].' '.$multi['event_more_start_time'])); ?>"><?php echo get_mep_datetime($multi['event_more_start_date'],'date-text').' '.get_mep_datetime($multi['event_more_start_time'],'time'); ?></option>
<?php } ?>
</select>
<?php } ?>
<input type="hidden" name='post_type' value='mep_events_attendees'>
<input type="hidden" name='event_id' value='<?php echo $post_id; ?>'>
<button class="button button-primary button-large"><?php _e('Attendees List','mage-eventpress'); ?></button>
</form>
<?php
// }else{
// echo '<a class="button button-primary button-large" href="'.get_site_url().'/wp-admin/edit.php?post_type=mep_events_attendees&meta_value='.$post_id.'">Attendees List</a></form>';
// }
break;
}
}
}
@ -2768,7 +2744,7 @@ if (!function_exists('mep_cart_display_ticket_type_list')) {
function mep_cart_display_ticket_type_list($ticket_type_arr){
ob_start();
foreach ($ticket_type_arr as $ticket) {
echo '<li>' . $ticket['ticket_name'] . " - " . wc_price($ticket['ticket_price']) . ' x ' . $ticket['ticket_qty'] . ' = ' . wc_price((int) $ticket['ticket_price'] * (int) $ticket['ticket_qty']) . '</li>';
echo '<li>' . $ticket['ticket_name'] . " - " . wc_price($ticket['ticket_price']) . ' x ' . $ticket['ticket_qty'] . ' = ' . wc_price((float) $ticket['ticket_price'] * (float) $ticket['ticket_qty']) . '</li>';
}
return apply_filters('mep_display_ticket_in_cart_list',ob_get_clean(),$ticket_type_arr);
}
@ -2805,6 +2781,7 @@ return $expire_date;
add_action('mep_event_single_template_end','mep_single_page_js_script');
add_action('mep_add_to_cart_shortcode_js','mep_single_page_js_script');
add_action('mep_event_admin_booking_js','mep_single_page_js_script');
if (!function_exists('mep_single_page_js_script')) {
function mep_single_page_js_script($event_id){
$currency_pos = get_option('woocommerce_currency_pos');
@ -2812,10 +2789,10 @@ function mep_single_page_js_script($event_id){
?>
<script>
jQuery(document).ready(function() {
jQuery("#mep-event-accordion").accordion({
collapsible: true,
active: false
});
// jQuery("#mep-event-accordion").accordion({
// collapsible: true,
// active: false
// });
jQuery(document).on("change", ".etp", function() {
var sum = 0;
jQuery(".etp").each(function() {
@ -2975,4 +2952,32 @@ if (!function_exists('mep_product_exists')) {
function mep_product_exists( $id ) {
return is_string( get_post_status( $id ) );
}
}
if (!function_exists('mep_get_event_dates_arr')) {
function mep_get_event_dates_arr($event_id){
$now = current_time('Y-m-d H:i:s');
$event_start_datetime = get_post_meta($event_id,'event_start_datetime',true);
$event_expire_datetime = get_post_meta($event_id,'event_end_datetime',true);
$event_more_dates = get_post_meta($event_id,'mep_event_more_date',true) ? get_post_meta($event_id,'mep_event_more_date',true) : [];
$date_arr = array(array(
'start' => $event_start_datetime,
'end' => $event_expire_datetime
));
$m_date_arr = [];
if(sizeof($event_more_dates) > 0){
$i=0;
foreach ($event_more_dates as $mdate) {
if(strtotime($now) < strtotime($mdate['event_more_start_date'].' '.$mdate['event_more_start_time'])){
$mstart = $mdate['event_more_start_date'].' '.$mdate['event_more_start_time'];
$mend = $mdate['event_more_end_date'].' '.$mdate['event_more_end_time'];
$m_date_arr[$i]['start'] = $mstart;
$m_date_arr[$i]['end'] = $mend;
}
$i++;
}
}
$event_dates = array_merge($date_arr,$m_date_arr);
return apply_filters('mep_event_dates_in_calender_free',$event_dates,$event_id);
}
}

View File

@ -48,39 +48,26 @@ function mep_event_calender()
while ($loop->have_posts()) {
$loop->the_post();
$event_meta = get_post_custom(get_the_id());
$author_terms = get_the_terms(get_the_id(), 'mep_org');
$time = strtotime($event_meta['event_start_date'][0] . ' ' . $event_meta['event_start_time'][0]);
$newformat = date_i18n('Y-m-d H:i:s', $time);
?> {
start: '<?php echo date_i18n('Y-m-d H:i', strtotime($event_meta['event_start_date'][0] . ' ' . $event_meta['event_start_time'][0])); ?>',
end: '<?php echo date_i18n('Y-m-d H:i', strtotime($event_meta['event_end_date'][0] . ' ' . $event_meta['event_end_time'][0])); ?>',
$event_dates = mep_get_event_dates_arr(get_the_id());
foreach ($event_dates as $_dates) {
?>
{
start: '<?php echo date_i18n('Y-m-d H:i', strtotime($_dates['start'])); ?>',
end: '<?php echo date_i18n('Y-m-d H:i', strtotime($_dates['end'])); ?>',
title: '<?php the_title(); ?>',
url: '<?php the_permalink(); ?>',
class: '',
color: '#000',
data: {}
},
<?php
$event_multidate = maybe_unserialize($event_meta['mep_event_more_date'][0]);
if (is_array($event_multidate) && sizeof($event_multidate) > 0) {
foreach ($event_multidate as $_event_multidate) {
?>
{
start: '<?php echo date_i18n('Y-m-d H:i', strtotime($_event_multidate['event_more_start_date'] . ' ' . $_event_multidate['event_more_start_time'])); ?>',
end: '<?php echo date_i18n('Y-m-d H:i', strtotime($_event_multidate['event_more_end_date'] . ' ' . $_event_multidate['event_more_end_time'])); ?>',
title: '<?php the_title(); ?>',
url: '<?php the_permalink(); ?>',
class: '',
color: '#000',
data: {}
},
<?php
}
<?php }
}
$i++;
}
wp_reset_postdata(); ?>
]
@ -204,9 +191,10 @@ function mep_event_list($atts, $content = null)
var mixer = mixitup(containerEl);
<?php if ($pagination == 'carousal') { ?>
jQuery('#mep-carousel<?php echo $cid; ?>').owlCarousel({
autoplay: true,
autoplay: <?php echo mep_get_option('mep_autoplay_carousal', 'carousel_setting_sec', 'true'); ?>,
autoplayTimeout:<?php echo mep_get_option('mep_speed_carousal', 'carousel_setting_sec', '5000'); ?>,
autoplayHoverPause: true,
loop: true,
loop: <?php echo mep_get_option('mep_loop_carousal', 'carousel_setting_sec', 'true'); ?>,
margin: 20,
nav: <?php echo $nav; ?>,
dots: <?php echo $dot; ?>,

View File

@ -2,29 +2,33 @@
if ( ! defined( 'ABSPATH' ) ) { die; } // Cannot access pages directly.
function mep_cpt_tax(){
$event_label = mep_get_option('mep_event_label', 'general_setting_sec', 'Events');
$event_label = mep_get_option('mep_event_label', 'general_setting_sec', 'Events');
$event_cat_label = mep_get_option('mep_event_cat_label', 'general_setting_sec', 'Category');
$event_org__label = mep_get_option('mep_event_org_label', 'general_setting_sec', 'Organizer');
$event_cat_slug = mep_get_option('mep_event_cat_slug', 'general_setting_sec', 'mep_cat');
$event_org_slug = mep_get_option('mep_event_org_slug', 'general_setting_sec', 'mep_org');
$labels = array(
'name' => _x( $event_label.' Category','mage-eventpress' ),
'singular_name' => _x( $event_label.' Category','mage-eventpress' ),
'menu_name' => __( 'Category', 'mage-eventpress' ),
'name' => _x( $event_label.' '.$event_cat_label,'mage-eventpress' ),
'singular_name' => _x( $event_label.' '.$event_cat_label,'mage-eventpress' ),
'menu_name' => __( $event_cat_label, 'mage-eventpress' ),
'all_items' => __( 'All '.$event_label.' Category', 'mage-eventpress' ),
'parent_item' => __( 'Parent Category', 'mage-eventpress' ),
'parent_item_colon' => __( 'Parent Category:', 'mage-eventpress' ),
'new_item_name' => __( 'New Category Name', 'mage-eventpress' ),
'add_new_item' => __( 'Add New Category', 'mage-eventpress' ),
'edit_item' => __( 'Edit Category', 'mage-eventpress' ),
'update_item' => __( 'Update Category', 'mage-eventpress' ),
'view_item' => __( 'View Category', 'mage-eventpress' ),
'separate_items_with_commas' => __( 'Separate Category with commas', 'mage-eventpress' ),
'add_or_remove_items' => __( 'Add or remove Category', 'mage-eventpress' ),
'parent_item' => __( 'Parent '.$event_cat_label, 'mage-eventpress' ),
'parent_item_colon' => __( 'Parent '.$event_cat_label.':', 'mage-eventpress' ),
'new_item_name' => __( 'New '.$event_cat_label.' Name', 'mage-eventpress' ),
'add_new_item' => __( 'Add New '.$event_cat_label, 'mage-eventpress' ),
'edit_item' => __( 'Edit '.$event_cat_label, 'mage-eventpress' ),
'update_item' => __( 'Update '.$event_cat_label, 'mage-eventpress' ),
'view_item' => __( 'View '.$event_cat_label, 'mage-eventpress' ),
'separate_items_with_commas' => __( 'Separate '.$event_cat_label.' with commas', 'mage-eventpress' ),
'add_or_remove_items' => __( 'Add or remove '.$event_cat_label, 'mage-eventpress' ),
'choose_from_most_used' => __( 'Choose from the most used', 'mage-eventpress' ),
'popular_items' => __( 'Popular Category', 'mage-eventpress' ),
'search_items' => __( 'Search Category', 'mage-eventpress' ),
'popular_items' => __( 'Popular '.$event_cat_label, 'mage-eventpress' ),
'search_items' => __( 'Search '.$event_cat_label, 'mage-eventpress' ),
'not_found' => __( 'Not Found', 'mage-eventpress' ),
'no_terms' => __( 'No Category', 'mage-eventpress' ),
'items_list' => __( 'Category list', 'mage-eventpress' ),
'items_list_navigation' => __( 'Category list navigation', 'mage-eventpress' ),
'no_terms' => __( 'No '.$event_cat_label, 'mage-eventpress' ),
'items_list' => __( $event_cat_label.' list', 'mage-eventpress' ),
'items_list_navigation' => __( $event_cat_label.' list navigation', 'mage-eventpress' ),
);
$args = array(
@ -35,32 +39,32 @@ function mep_cpt_tax(){
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'event-category' ),
'rewrite' => array( 'slug' => $event_cat_slug ),
);
register_taxonomy('mep_cat', 'mep_events', $args);
$labelso = array(
'name' => _x( $event_label.' Organizer','mage-eventpress' ),
'singular_name' => _x( $event_label.' Organizer','mage-eventpress' ),
'menu_name' => __( 'Organizer', 'mage-eventpress' ),
'all_items' => __( 'All '.$event_label.' Organizer', 'mage-eventpress' ),
'parent_item' => __( 'Parent Organizer', 'mage-eventpress' ),
'parent_item_colon' => __( 'Parent Organizer:', 'mage-eventpress' ),
'new_item_name' => __( 'New Organizer Name', 'mage-eventpress' ),
'add_new_item' => __( 'Add New Organizer', 'mage-eventpress' ),
'edit_item' => __( 'Edit Organizer', 'mage-eventpress' ),
'update_item' => __( 'Update Organizer', 'mage-eventpress' ),
'view_item' => __( 'View Organizer', 'mage-eventpress' ),
'separate_items_with_commas' => __( 'Separate Organizer with commas', 'mage-eventpress' ),
'add_or_remove_items' => __( 'Add or remove Organizer', 'mage-eventpress' ),
'name' => _x( $event_label.' '.$event_org__label,'mage-eventpress' ),
'singular_name' => _x( $event_label.' '.$event_org__label,'mage-eventpress' ),
'menu_name' => __( $event_org__label, 'mage-eventpress' ),
'all_items' => __( 'All '.$event_label.' '.$event_org__label, 'mage-eventpress' ),
'parent_item' => __( 'Parent '.$event_org__label, 'mage-eventpress' ),
'parent_item_colon' => __( 'Parent '.$event_org__label.':', 'mage-eventpress' ),
'new_item_name' => __( 'New '.$event_org__label.' Name', 'mage-eventpress' ),
'add_new_item' => __( 'Add New '.$event_org__label, 'mage-eventpress' ),
'edit_item' => __( 'Edit '.$event_org__label, 'mage-eventpress' ),
'update_item' => __( 'Update '.$event_org__label, 'mage-eventpress' ),
'view_item' => __( 'View '.$event_org__label, 'mage-eventpress' ),
'separate_items_with_commas' => __( 'Separate '.$event_org__label.' with commas', 'mage-eventpress' ),
'add_or_remove_items' => __( 'Add or remove '.$event_org__label, 'mage-eventpress' ),
'choose_from_most_used' => __( 'Choose from the most used', 'mage-eventpress' ),
'popular_items' => __( 'Popular Organizer', 'mage-eventpress' ),
'search_items' => __( 'Search Organizer', 'mage-eventpress' ),
'popular_items' => __( 'Popular '.$event_org__label, 'mage-eventpress' ),
'search_items' => __( 'Search '.$event_org__label, 'mage-eventpress' ),
'not_found' => __( 'Not Found', 'mage-eventpress' ),
'no_terms' => __( 'No Organizer', 'mage-eventpress' ),
'items_list' => __( 'Organizer list', 'mage-eventpress' ),
'items_list_navigation' => __( 'Organizer list navigation', 'mage-eventpress' ),
'no_terms' => __( 'No '.$event_org__label, 'mage-eventpress' ),
'items_list' => __( $event_org__label.' list', 'mage-eventpress' ),
'items_list_navigation' => __( $event_org__label.' list navigation', 'mage-eventpress' ),
);
$argso = array(
@ -71,7 +75,7 @@ register_taxonomy('mep_cat', 'mep_events', $args);
'show_admin_column' => true,
'update_count_callback' => '_update_post_term_count',
'query_var' => true,
'rewrite' => array( 'slug' => 'event-organizer' ),
'rewrite' => array( 'slug' => $event_org_slug ),
);
register_taxonomy('mep_org', 'mep_events', $argso);

View File

@ -25,11 +25,10 @@ if (!function_exists('mep_display_event_loop_list')) {
$hide_time_list = mep_get_option('mep_event_hide_time_list', 'general_setting_sec', 'no');
$hide_only_end_time_list = mep_get_option('mep_event_hide_end_time_list', 'general_setting_sec', 'no');
$recurring = get_post_meta($event_id, 'mep_enable_recurring', true) ? get_post_meta($event_id, 'mep_enable_recurring', true) : 'no';
$event_type = get_post_meta(get_the_id(), 'mep_event_type', true) ? get_post_meta(get_the_id(), 'mep_event_type', true) : 'offline';
$event_type = get_post_meta(get_the_id(), 'mep_event_type', true) ? get_post_meta(get_the_id(), 'mep_event_type', true) : 'offline';
ob_start();
require(mep_template_file_path('list/default.php'));
?>
<?php do_action('mep_event_list_loop_end', $event_id); ?>
do_action('mep_event_list_loop_end', $event_id); ?>
</div>
<?php
$content = ob_get_clean();

65
inc/welcome.php Normal file
View File

@ -0,0 +1,65 @@
<?php
if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
add_action('admin_enqueue_scripts', 'mep_event_welcome_enqueue_scripts', 10, 1);
function mep_event_welcome_enqueue_scripts()
{
wp_enqueue_style('mep-welcome-style', plugin_dir_url(__DIR__) . 'inc/welcome/css/welcome.css', array());
}
//Add admin page to the menu
add_action('admin_menu', 'mep_event_welcome_admin_menu');
function mep_event_welcome_admin_menu()
{
add_submenu_page('edit.php?post_type=mep_events', __('Welcome', 'mage-eventpress'), __('<span style="color:green">Welcome</span>', 'mage-eventpress'), 'manage_options', 'mep_event_welcome_page', 'mep_event_welcome_page');
}
function mep_event_welcome_page()
{
?>
<!-- Create a header in the default WordPress 'wrap' container -->
<div class="wrap">
<?php
$active_tab = 'welcome';
if (isset($_GET['tab'])) {
$active_tab = $_GET['tab'];
} // end if
?>
<h2 class="nav-tab-wrapper mage-event-welcome-tab">
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=welcome" class="nav-tab <?php echo $active_tab == 'welcome' ? 'nav-tab-active' : ''; ?>">Welcome</a>
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=kwb" class="nav-tab <?php echo $active_tab == 'kwb' ? 'nav-tab-active' : ''; ?>">Support & Knowladgebase</a>
</h2>
<div class="tab-content">
<?php switch ($active_tab):
case 'welcome':
echo '<div class="mage-event-welcome">';
require_once(dirname(__DIR__) . "/inc/welcome/welcome.php");
echo '</div>';
break;
case 'kwb':
echo '<div class="mage-event-welcome">';
require_once(dirname(__DIR__) . "/inc/welcome/support.php");
echo '</div>';
break;
default:
echo '<div class="mage-event-welcome">';
require_once(dirname(__DIR__) . "/inc/welcome/welcome.php");
echo '</div>';
break;
endswitch; ?>
</div>
</div><!-- /.wrap -->
<?php
}

4
inc/welcome/css/font-awesome.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,24 @@
/**********Button************/
[class^='mageStyle'] button[class*='defaultButton'] {
padding: 0 var(--default-mp);
color: var(--button-color);
font-size: var(--button-fs);
background-color: var(--button-bg);
cursor: pointer;
min-width: var(--button-width);
height: auto;
min-height: var(--button-height);
-webkit-appearance: button;
overflow: visible;
}
[class^='mageStyle'] button[class*='defaultButton_xs']{
min-width:auto;
padding: var(--default-mp-xs) !important;
font-size: 70%;
}
[class^='mageStyle'] button[class*='defaultButton'] span {padding: 0 7px 0 0;}
[class^='mageStyle'] button[class*='defaultButton']:hover,
[class^='mageStyle'] button[class*='defaultButton']:focus {text-decoration: none;opacity: 0.9;}
/*************/

View File

@ -0,0 +1,3 @@
ul.cart_list{list-style-type: none;line-height: 1.25;font-size: 14px;color:#444;padding: 0 0 0 10px;}
ul.cart_list li{display: block;padding: 3px 0;}
.cart_product_item{border: 1px solid #ddd;margin: 7px 0 0 0;padding: 7px;border-radius: 5px;}

View File

@ -0,0 +1,13 @@
/*******Click slider***************/
[class^='mageStyle'] [class*='clickSlide']{background-color: var(--click-slide-bg);padding: var(--default-mp);}
[class^='mageStyle'] [class*='slideItem']{display: none;}
[class^='mageStyle'] [class*='slideItem'].active{display: block;}
[class^='mageStyle'] [class*='slideItem'] img{width: 100%;}
[class^='mageStyle'] [class*='slideIndicator']{margin: var(--default-mp) 0 0 0;}
[class^='mageStyle'] [class*='slideIndicatorItem']{border: 3px solid var(--default-border-color);margin: 0 5px;background-color: var(--default-border-color);}
[class^='mageStyle'] [class*='slideIndicatorItem'].active{border-color: var(--default-active-color);background-color: var(--default-active-color)}
[class^='mageStyle'] [class*='slideIndicatorItem'] img{height: 30px;width: auto;}
[class^='mageStyle'] [class*='slideIndicatorItem'].active img{height: 35px;}

View File

@ -0,0 +1,18 @@
[class^='mageStyle'] .error {background-color: red;color: #fff;}
/*****Success*********/
[class^='mageStyle'] [class*='textSuccess'] {color: var(--success-color);}
[class^='mageStyle'] [class*='bgSuccess'] {background-color: var(--success-color);}
/*****danger*********/
[class^='mageStyle'] [class*='textDanger'] {color: var(--danger-color);}
[class^='mageStyle'] [class*='bgDanger'] {background-color: var(--danger-color);}
/*****Light*********/
[class^='mageStyle'] [class*='textLight'] {color: var(--light-color);}
[class^='mageStyle'] [class*='bgLight'] {background-color: var(--light-color);}
/*****Light*********/
[class^='mageStyle'] [class*='textYellow'] {color: var(--yellow-color);}
[class^='mageStyle'] [class*='bgYellow'] {background-color: var(--yellow-color);}
/*****blue*********/
[class^='mageStyle'] [class*='textBlue'] {color: var(--blue-color);}
[class^='mageStyle'] [class*='bgBlue'] {background-color: var(--blue-color);}
[class^='mageStyle'] [class*='borderBlue'] {border-color: var(--blue-color);}
[class^='mageStyle'] [class*='textBorderBlue'] {border-color: var(--blue-color);color: var(--blue-color);}

View File

@ -0,0 +1,38 @@
header,section,footer{position: relative;}
/************/
header[class^='mageStyle'] {
background: var(--header-bg);
color: var(--header-color);
padding: var(--header-padding);
font-size: var(--header-fs);
-webkit-box-shadow: var(--header-shadows);
box-shadow: var(--header-shadows);
}
section[class^='mageStyle'] {
padding: var(--section-padding);
background-color: var(--section-bg);
margin: var(--section-margin);
}
/********Footer**************/
footer[class^='mageStyle'] {
padding: var(--footer-padding);
background-color: var(--footer-bg);
font-size: var(--footer-fs);
color: var(--footer-color);
}
footer[class^='mageStyle'] [class*='footerTop'] {
padding: var(--footer-top-padding);
background: var(--footer-top-bg);
color: var(--footer-top-color);
}
footer[class^='mageStyle'] [class*='footerTop'] a{color: var(--footer-top-color);}
footer[class^='mageStyle'] [class*='footerTop'] a:hover{color: #f4780b;padding: 0 0 0 var(--default-mp-xs);}
footer[class^='mageStyle'] [class*='footerBottom'] {
padding: var(--footer-bottom-padding);
background: var(--footer-bottom-bg);
}
/********Sidebar Content**************/
[class^='mageStyle'] [class*='leftSidebar'] {width: 100%;max-width: var(--left-sidebar-width);}
[class^='mageStyle'] [class*='mainSection'] {width: 100%;max-width: var(--main-content-width);margin: 0 0 0 var(--default-mp);}
/****************/

View File

@ -0,0 +1,231 @@
.shadow_one{
-webkit-box-shadow: 0 8px 15px #f0f0f0;
box-shadow: 0 8px 15px #f0f0f0;
}
.shadow_two{
-webkit-box-shadow: 0 8px 15px #f0f0f0;
box-shadow: 0 8px 15px #f0f0f0;
background-color: #fbfdff;
width: 48%;
}
header{color: #fff;}
header .textContent{margin: 50px 0 0 0;}
p{color: #606b7b;}
p.textColor{color: #3f3f3f;}
/* label{color: #273b5e;font-size: 18px;font-weight: bold;font-family: var(--custom-font-family);} */
/* label span{color: #ff555d;} */
.top_icon_area {
width: 350px;float: right;
-webkit-transform: rotate(40deg);
-moz-transform: rotate(40deg);
-ms-transform: rotate(40deg);
-o-transform: rotate(40deg);
transform: rotate(40deg);
-webkit-transform-origin: 50% 85%;
-moz-transform-origin: 50% 85%;
-ms-transform-origin: 50% 85%;
-o-transform-origin: 50% 85%;
transform-origin: 50% 85%;
overflow: hidden;
}
.top_icon_area ul {height: 120px;}
/****/
[class^='mageStyle'] section h1{margin: 0 0 50px 0;}
[class^='mageStyle'] section h2{margin: 0 0 20px 0;}
[class^='mageStyle'] section p{margin: 0 0 10px 0;}
[class^='mageStyle'] section label{margin: 15px 0 0 0;}
/****/
[class^='mageStyle'] [class*='customButton']{
min-width: 95px;width:auto;height: 45px;color: #fff;font-size: 20px;font-weight: 500;position: relative;
background-image: -webkit-linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
background-image: -moz-linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
background-image: linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
border-radius: 5px;
display: -webkit-inline-flex;display: inline-flex;
margin: 0 0 20px 0;padding: 0 20px;
}
[class^='mageStyle'] a[class*='customButton']{color: #fff;min-width: 170px;}
[class^='mageStyle'] a[class*='customButton'].customSupport{background-color: #49ab56;background-image: none;}
[class^='mageStyle'] a[class*='customButton'].customSubscription{background-color: #544fb8;background-image: none;}
[class^='mageStyle'] a[class*='customButton']:hover{color: #F2F2F2;}
.preDash::before,
.postDash::after {
position: absolute;
content: "";
top: 23px;
width: 45px;
height: 2px;
background-color: #F26E26;
}
.preDash::before{left: -65px;}
.postDash::after{right: -65px;}
[class^="mageStyle"] .features [class*="customButton"]{font-size: 16px;margin: 20px 0;}
[class^="mageStyle"] [class*="customButton"].customIcon{height: 90px;width: 90px;border-radius: 50%;padding: 0;min-width: auto;}
[class^="mageStyle"] [class*="customButton"].customIcon::after{top: 44px;}
/******/
[class^='mageStyle'] .buttonOutline{
min-width: 160px;min-height: 60px;border: 2px solid #ff555d;color: #ff555d;font-size: 16px;font-weight: 500;
display: -webkit-inline-flex;display: inline-flex;
margin: 30px 0 0 0;padding: 0 15px;
}
[class^='mageStyle'] .buttonOutline:hover{
background-color: #ff555d;color: #fff;
}
/********/
.preset,.widget,.tutorial{background-color: #f7faff;}
.unlimited_section .textContent{padding: 0 0 0 30px;}
.unlimited_section .textContent h4{margin: 0 0 10px 0;}
.unlimited_section .content_area {padding: 25px 15px 0 0;}
.getPro{padding: 50px 0;}
/***************/
[class^='mageStyle'] .widgetButton{
padding: 0;
color: #fff;
display: -webkit-inline-flex;display: inline-flex;
font-size: 22px;
background-color: #6c57c1;
cursor: pointer;
width: calc(25% - 20px);
height: auto;
min-height: 60px;
-webkit-appearance: button;
overflow: visible;
border-radius: 30px;
border: none;
margin: 0 0 20px 0;
}
[class^='mageStyle'] .widgetButton:hover,
[class^='mageStyle'] .widgetButton:focus {text-decoration: none;opacity: 0.9;background-color: #4aac57;}
[class^='mageStyle'] .widgetButton.load_more{margin: 40px 0 0 0;
background-image: -webkit-linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
background-image: -moz-linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
background-image: linear-gradient(#ff8f8e,#ff8787,#ff7b7d,#ff6369,#ff575f,#ff515a);
}
.withOurWork .withWork{padding: 15px;border: 1px solid #815efb;}
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 60px 0;}
[class^='mageStyle'] .knowledge a[class*='customButton']{margin: 30px 0 20px 0;}
@media only screen and (max-width: 1500px) {
.top_icon_area {
-webkit-transform-origin: 35% 40%;
-moz-transform-origin: 35% 40%;
-ms-transform-origin: 35% 40%;
-o-transform-origin: 35% 40%;
transform-origin: 35% 40%;
width: 240px;
}
.top_icon_area img{max-width: 75px;}
.top_icon_area ul{max-height: 80px;}
[class^='mageStyle'] section h1{margin: 0 0 40px 0;}
[class^='mageStyle'] section h2{margin: 0 0 15px 0;}
[class^='mageStyle'] section p{margin: 0 0 7px 0;}
[class^='mageStyle'] section label{margin: 10px 0 0 0;}
.unlimited_section .textContent{padding: 0 0 0 25px;}
.unlimited_section .content_area {padding: 20px 10px 0 0;}
}
@media only screen and (max-width: 1100px) {
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 50px 0;}
[class^="mageStyle"] [class*="customButton"].customIcon{height: 80px;width: 80px;}
[class^="mageStyle"] [class*="customButton"].customIcon::after{top: 39px;}
header .textContent{margin: 40px 0 0 0;}
[class^='mageStyle'] h2{font-size: 22px}
[class^='mageStyle'] h3{font-size: 18px}
.top_icon_area{width: 195px;}
.top_icon_area img{max-width: 60px;}
.top_icon_area ul{max-height: 65px;}
[class^="mageStyle"] section h1{margin: 0 0 25px 0;font-size: 45px;}
.unlimited_section .textContent{padding: 0 0 0 20px;}
.unlimited_section .content_area {padding: 15px 10px 0 0;}
.unlimited_section .textContent h4{margin: 0 0 7px 0;font-size: 18px;}
[class^='mageStyle'] .buttonOutline{min-height: 50px;font-size: 15px;margin: 20px 0 0 0;}
[class^='mageStyle'] .widgetButton{font-size: 20px;width: calc(25% - 15px);min-height: 60px;margin: 0 0 15px 0;}
[class^="mageStyle"] [class*="customButton"]{font-size: 18px;}
}
@media only screen and (max-width: 900px) {
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 40px 0;}
[class^="mageStyle"] [class*="customButton"].customIcon{height: 70px;width: 70px;}
[class^="mageStyle"] [class*="customButton"].customIcon::after{top: 34px;}
header .textContent{margin: 20px 0 0 0;}
[class^='mageStyle'] header h2{font-size: 18px;}
[class^='mageStyle'] header h3{font-size: 16px;}
.top_icon_area{width: 150px;}
.top_icon_area img{max-width: 45px;}
.top_icon_area ul{max-height: 50px;}
[class^='mageStyle'] section h1{margin: 0 0 30px 0;}
[class^='mageStyle'] section h2{margin: 0 0 10px 0;}
[class^='mageStyle'] section p{margin: 0 0 5px 0;}
[class^='mageStyle'] section label{margin: 7px 0 0 0;}
[class^="mageStyle"] section h1{margin: 0 0 20px 0;font-size: 40px;}
.unlimited_section .textContent{padding: 0 0 0 15px;}
.unlimited_section .content_area {padding: 10px 7px 0 0;}
.unlimited_section .textContent h4{font-size: 16px;}
[class^='mageStyle'] .buttonOutline{min-height: 45px;font-size: 15px;margin: 15px 0 0 0;}
[class^='mageStyle'] .widgetButton{font-size: 18px;width: calc(33.3333% - 15px);min-height: 50px;margin: 0 0 15px 0;}
}
@media only screen and (max-width: 700px) {
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 30px 0;}
[class^="mageStyle"] [class*="customButton"].customIcon{height: 60px;width: 60px;}
[class^="mageStyle"] [class*="customButton"].customIcon::after{top: 29px;}
[class^="mageStyle"] [class*="extraBold"]{font-weight: 500;}
header .textContent{margin: 15px 0 0 0;}
[class^='mageStyle'] header h2{font-size: 16px;font-weight: 500;}
[class^='mageStyle'] header h3{font-size: 14px;font-weight: 500;}
.top_icon_area{width: 120px;}
.top_icon_area img{max-width: 35px;}
.top_icon_area ul{max-height: 40px;}
[class^="mageStyle"] [class*="customButton"]{height: 30px;font-size: 14px;margin: 0 0 10px 0;}
.preDash::before, .postDash::after{top: 15px;width: 40px;height: 1px;}
.preDash::before {left: -50px;}
.postDash::after {right: -50px;}
[class^="mageStyle"] section h1{margin: 0 0 15px 0;font-size: 30px;}
[class^="mageStyle"] section h2{font-size: 20px;}
[class^="mageStyle"] section h4{font-size: 14px;}
[class^="mageStyle"] section p{font-size: 13px;}
.unlimited_section .textContent{padding: 0 0 0 10px;}
[class^='mageStyle'] .buttonOutline{min-height: 40px;font-size: 14px;margin: 10px 0 0 0;}
[class^='mageStyle'] .widgetButton{font-size: 16px;width: calc(33.3333% - 15px);min-height: 45px;margin: 0 0 15px 0;}
}
@media only screen and (max-width: 500px) {
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 25px 0;}
[class^="mageStyle"] [class*="customButton"].customIcon{height: 50px;width: 50px;}
[class^="mageStyle"] [class*="customButton"].customIcon::after{top: 24px;}
header .textContent{margin:0;}
[class^='mageStyle'] header h2{font-size: 14px;}
[class^='mageStyle'] header h3{font-size: 12px;}
[class^='mageStyle'] header h4{font-size: 12px;}
.top_icon_area{width: 90px;}
.top_icon_area img{max-width: 25px;}
.top_icon_area ul{max-height: 30px;}
[class^="mageStyle"] section h1{font-size: 25px;}
[class^="mageStyle"] section h2{font-size: 18px;}
[class^="mageStyle"] section p{font-size: 12px;}
[class^='mageStyle'] .widgetButton{font-size: 15px;width: calc(50% - 10px);min-height: 40px;margin: 0 0 10px 0;}
[class^="mageStyle"] .widgetButton.load_more{width: 100%;margin: 20px 0 0 0;}
}

View File

@ -0,0 +1,10 @@
[class^="mageStyle"] [class*="defaultLayout"] {
padding: var(--default-mp);
background-color: var(--default-bg);
border: 1px solid var(--default-border-color);
margin-bottom: var(--default-mp);
}
[class^="mageStyle"] [class*="defaultLayout_xs"] {
padding: var(--default-mp-xs);
margin-bottom: var(--default-mp-xs);
}

View File

@ -0,0 +1,31 @@
/********Faq***********/
[class*='faqItem'] {
margin: var(--default-mp) 0 0 0;
background-color: var(--section-bg);
}
[class*='faqItem']:hover {
background-color: #f7f7f7;
}
[class*='faqItem'].mage_faq_active {
border: 1px solid var(--default-border-color);
background-color: var(--default-active-color);
color: #fff;
}
[class*='faqItem'] h6 {
color: #555555;
padding: var(--default-mp);
cursor: pointer;
margin: 0 !important;
}
[class*='faqItem'] h6 span {
margin: 0 7px 0 0;
color: #707;
}
[class*='faqItem'] p {
display: none;
padding: var(--default-mp);
color: #222;
background-color: #f7f7f7;
border-top: 1px solid var(--default-border-color);
margin: 0 !important;
}

View File

@ -0,0 +1,55 @@
/************flex**********/
[class^="mageStyle"] [class*="flexColumn"],
[class^="mageStyle"] [class*="flexEqual"],
[class^="mageStyle"] [class*="customCheckbox"],
div.mage_form_qty,
div[class*="mage_qty"] {display: -webkit-flex;display: flex;}
[class^="mageStyle"] label,
[class^="mageStyle"] [class*="dFlex"],
[class^="mageStyle"] [class*="listInline"],
div.mage_row,
[class^="mageStyle"] [class*="align"], [class^="mageStyle"] [class*="justify"],
[class*="inputGroup"],
[class*="inputInline"] [class*="mageForm"],
ul.mage-list-double,
[class^="mageStyle"] [class^="mage_menu"] {
display: -webkit-flex;display: flex;
-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
}
[class*="flexEqual"] > *,
[class*="listInline"] > li,
[class*="inputInline"] [class*="inputList"] {-webkit-flex: 1;-ms-flex: 1;flex: 1;}
[class*="alignCenter"],
[class*="mage_qty"],
label {-webkit-align-items: center;align-items: center;}
[class*="alignBaseline"] {-webkit-align-items: baseline;align-items: baseline;}
[class*="justifyCenter"],
[class*="mage_qty"]{-webkit-justify-content: center;justify-content: center;}
[class*="justifyBetween"],
[class*="customCheckbox"] {-webkit-justify-content: space-between;justify-content: space-between;}
[class*="justifyAround"] {-webkit-justify-content: space-around;justify-content: space-around;}
[class*="justifyEnd"] {-webkit-justify-content: flex-end;justify-content: flex-end;}
[class*="flexColumn"],
[class*="column"] {-webkit-flex-flow: column;flex-flow: column;}
[class^="mageStyle"] [class*="nowrap"]{-webkit-flex-wrap: nowrap;flex-wrap: nowrap;}
[class*="inputInline"] [class*="inputList"] {-webkit-flex-basis: 100%;flex-basis: 100%;}
[class^="mageStyle"] [class*="allCenter"],
[class^="mageStyle"] button[class*="defaultButton"],
[class^="mageStyle"] [class*="slideIndicator"],
[class^="mageStyle"] [class*='defaultLoader'],
[class^="mageStyle"] [class*="magePopup"].in,
[class^="mageStyle"] [class*="magePopup"] .popupClose {
display: -webkit-flex;display: flex;
-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;
-webkit-justify-content: center;justify-content: center;
-webkit-align-items: center;align-items: center;
}

View File

@ -0,0 +1,17 @@
/********Font weight***********/
[class^='mageStyle'] h1,
[class^='mageStyle'] h2,
[class^='mageStyle'] h3,
[class^='mageStyle'] h4,
[class^='mageStyle'] h5,
[class^='mageStyle'] h6{font-weight: 500;}
[class^='mageStyle'] strong{font-weight: bold;}
[class^='mageStyle'] [class*='extraBold']{font-weight: 900;}
/********Font Size***********/
[class^='mageStyle'] h1{font-size: var(--font-size-h1);}
[class^='mageStyle'] h2{font-size: var(--font-size-h2);}
[class^='mageStyle'] h3{font-size: var(--font-size-h3);}
[class^='mageStyle'] h4{font-size: var(--font-size-h4);}
[class^='mageStyle'] h5{font-size: var(--font-size-h5);}
[class^='mageStyle'] h6{font-size: var(--font-size-h6);}
[class^='mageStyle'] label{font-size: var(--font-size-label);}

View File

@ -0,0 +1,75 @@
[class^="mageStyle"] [class*="mageForm"] label {margin: var(--default-mp-xs) 0 0 0;text-transform: capitalize;}
[class^="mageStyle"] [class*="mageForm"] label span {width: 100%;margin: 0 0 var(--default-mp-xs) 0 !important;}
[class^="mageStyle"] [class*="mageForm"] label span::before {padding: 0 var(--default-mp-xs);}
[class^="mageStyle"] [class*="mageForm"] button[class*="mage_button"] {height: 40px;}
[class^="mageStyle"] [class*="formControl"] {
width: 100%;color: #222;
height: 40px;
border: 1px solid var(--default-border-color);
padding: 7px var(--default-mp);
font-size: var(--default-font-size);
}
/****************/
[class^="mageStyle"] [class*="inputList"] {margin: var(--default-mp) 0 0 0;position: relative;}
[class^="mageStyle"] [class*="inputList"] textarea[class*="formControl"] { height: auto !important;}
/******* group form*********/
[class^="mageStyle"] [class*="inputGroup"] {width: 100%;padding: 0 0 var(--default-mp-xs) 0;}
[class^="mageStyle"] [class*="inputGroup"] label {width: auto;padding: 0 var(--default-mp) 0 0;}
[class^="mageStyle"] [class*="inputGroup"] label input[type="checkbox"] {margin: 0 var(--default-mp-xs);}
/******* input as a select*********/
[class^="mageStyle"] [class*="inputList"] .mage_input_select [class*="formControl"]:focus {border-color: var(--default-border-color);}
[class^="mageStyle"] div.mage_input_select {position: relative;}
[class^="mageStyle"] ul.mage_input_select_list {
display: none;z-index: 111;overflow: auto;max-height: 250px;height: auto;width: 100%;margin: 1px 0 0 0 !important;padding: 10px !important;
position: absolute;left: 0;top: 100%;right: 0;
border: 1px solid var(--default-border-color);
background-color: var(--default-bg);
}
[class^="mageStyle"] ul.mage_input_select_list li {padding: 10px;cursor: pointer;border-bottom: 1px solid var(--default-border-color);margin: 0;list-style-type: none;}
[class^="mageStyle"] ul.mage_input_select_list li:last-child {border-bottom: none;}
[class^="mageStyle"] ul.mage_input_select_list li:hover {background-color: #777;color: #FFF;}
/*****Form inline*******/
[class^="mageStyle"] [class*="inputInline"] {padding: 15px;margin: 15px 0 0 0;}
[class^="mageStyle"] [class*="inputInline"] [class*="inputList"] {max-width: calc(20% - 10px);width: 100%;margin: 0 5px;}
/********Form Horizontal**************/
[class^="mageStyle"] [class*="inputHorizontal"] [class*="mageForm"]{max-width: 500px;width: 100%;}
/*****Form Qty inc dec*******/
[class^="mageStyle"] div.mage_form_qty {max-width: 140px;border: 1px solid var(--default-border-color);margin: 0;background-color: var(--default-bg);text-align: center;}
[class^="mageStyle"] div.mage_form_qty [class*="formControl"] {width: 50%;border-top: none !important;border-bottom: none !important;text-align: center;}
[class^="mageStyle"] [class*="mage_qty"] {width: 25%;color: #777;font-size: var(--default-font-size) !important;cursor: pointer;}
[class^="mageStyle"] [class*="mage_qty"] span {margin: 0 !important;}
/**********Checkbox Custom*********/
[class^="mageStyle"] .customCheckbox {padding: 3px 0 0 30px;position: relative;width: 100%;}
[class^="mageStyle"] .customCheckbox::before{
content: "";position: absolute;
left: 0;top: 0;height: 20px;width: 20px;
background-color: #FFF;
border: 2px rgba(0, 0, 0, 0.5) solid;
border-radius: 2px;
}
[class^="mageStyle"] .customCheckboxLabel{padding: 0 0 10px 0;}
[class^="mageStyle"] .customCheckboxLabel input:checked~ .customCheckbox::before{border-color: #07c;background: #07c;}
[class^="mageStyle"] .customCheckboxLabel input:focus ~ .customCheckbox::before {
border-color: #07C;outline: 0;
-webkit-box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.3); box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.3);
}
[class^="mageStyle"] .customCheckboxLabel input:checked~ .customCheckbox::after{
content: "";position: absolute;
left: 2px;top: 4px;height: 8px;width: 16px;
border: 2px solid #fff;border-top: none;border-right: none;
z-index: 11;background-color: transparent;
-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);
}
/**********Responsive*********/
@media only screen and (max-width: 1250px) {
[class^="mageStyle"] [class*="inputInline"] [class*="inputList"] {max-width: calc(25% - 10px);}
}
@media only screen and (max-width: 1050px) {
[class^="mageStyle"] [class*="inputInline"] [class*="inputList"] {max-width: calc(33.33% - 10px);}
}
@media only screen and (max-width: 850px) {
[class^="mageStyle"] [class*="inputInline"] [class*="inputList"] {max-width: calc(50% - 10px);}
}
@media only screen and (max-width: 600px) {
[class^="mageStyle"] [class*="inputInline"] [class*="inputList"] {max-width: 100%;min-width: 100%;}
}

View File

@ -0,0 +1,49 @@
*, *::after, *::before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body{margin: 0;padding: 0;}
body.noScroll {overflow: hidden;}
[class^="mageStyle"] {
font-size: var(--default-font-size);
font-weight: var(--default-font-weight);
color: var(--default-color);
line-height: 1.25 !important;
font-family: var(--font-family);
}
[class^="mageStyle"] hr{margin: 10px 0;line-height: 1;border-color: #ddd;}
[class^="mageStyle"] *,
[class^="mageStyle"] h1,
[class^="mageStyle"] h2,
[class^="mageStyle"] h3,
[class^="mageStyle"] h4,
[class^="mageStyle"] h5,
[class^="mageStyle"] h6,
[class^="mageStyle"] p,
[class^="mageStyle"] form,
[class^="mageStyle"] ul {margin: 0;padding: 0;line-height: 1.25 !important;}
[class^="mageStyle"] button,
[class^="mageStyle"] input,
[class^="mageStyle"] optgroup,
[class^="mageStyle"] select,
[class^="mageStyle"] textarea {font-family: inherit;}
[class^="mageStyle"] a {color: #0E6BB7;}
[class^="mageStyle"] a:hover {color: var(--default-active-color);}
[class^="mageStyle"] a,
[class^="mageStyle"] a:hover {text-decoration: none;}
[class^="mageStyle"] a,
[class^="mageStyle"] [class*="transition"],
[class^="mageStyle"] [class*="magePopup"] .popupClose,
[class^="mageStyle"] [class*="magePopup"],
[class^="mageStyle"] .customCheckbox,
[class^="mageStyle"] [class*='faqItem'],
[class^="mageStyle"] button[class*="mage_button"] {
-webkit-transition: 250ms ease-in-out;
-moz-transition: 250ms ease-in-out;
-o-transition: 250ms ease-in-out;
transition: 250ms ease-in-out;
}

View File

@ -0,0 +1,80 @@
[class^='mageStyle'] [class*='mage_container'] {max-width: var(--container-max-width);width: 95%;margin: 0 auto;}
[class^='mageStyle'] [class*='mage_row'] {min-height: 1px;}
[class^='mageStyle'] [class*='fullWidth'] {width: 100%;max-width: 100%;}
[class^='mageStyle'] [class*='fullHeight'] {height: 100%;}
[class^='mageStyle'] [class*='col_1'] {width: 8.3333333333%;}
[class^='mageStyle'] [class*='col_2'] {width: 16.666666667%;}
[class^='mageStyle'] [class*='col_3'] {width: 25%;}
[class^='mageStyle'] [class*='col_4'] {width: 33.333333333%;}
[class^='mageStyle'] [class*='col_5'] {width: 41.666666667%;}
[class^='mageStyle'] [class*='col_6'] {width: 50%;}
[class^='mageStyle'] [class*='col_7'] {width: 58.333333333%;}
[class^='mageStyle'] [class*='col_8'] {width: 66.666666667%;}
[class^='mageStyle'] [class*='col_9'] {width: 75%;}
[class^='mageStyle'] [class*='col_10'] {width: 83.33333333%;}
[class^='mageStyle'] [class*='col_11'] {width: 91.66666667%;}
[class^='mageStyle'] [class*='col_12'] {width: 100%;}
/******large device*******/
@media only screen and (max-width: 1100px) {
[class^='mageStyle'] [class*='ld_1'] {width: 8.3333333333%;}
[class^='mageStyle'] [class*='ld_2'] {width: 16.666666667%;}
[class^='mageStyle'] [class*='ld_3'] {width: 25%;}
[class^='mageStyle'] [class*='ld_4'] {width: 33.333333333%;}
[class^='mageStyle'] [class*='ld_5'] {width: 41.666666667%;}
[class^='mageStyle'] [class*='ld_6'] {width: 50%;}
[class^='mageStyle'] [class*='ld_7'] {width: 58.333333333%;}
[class^='mageStyle'] [class*='ld_8'] {width: 66.666666667%;}
[class^='mageStyle'] [class*='ld_9'] {width: 75%;}
[class^='mageStyle'] [class*='ld_10'] {width: 83.33333333%;}
[class^='mageStyle'] [class*='ld_11'] {width: 91.66666667%;}
[class^='mageStyle'] [class*='ld_12'] {width: 100%;}
}
/*****medium device*******/
@media only screen and (max-width: 900px) {
[class^='mageStyle'] [class*='md_1'] {width: 8.3333333333%;}
[class^='mageStyle'] [class*='md_2'] {width: 16.666666667%;}
[class^='mageStyle'] [class*='md_3'] {width: 25%;}
[class^='mageStyle'] [class*='md_4'] {width: 33.333333333%;}
[class^='mageStyle'] [class*='md_5'] {width: 41.666666667%;}
[class^='mageStyle'] [class*='md_6'] {width: 50%;}
[class^='mageStyle'] [class*='md_7'] {width: 58.333333333%;}
[class^='mageStyle'] [class*='md_8'] {width: 66.666666667%;}
[class^='mageStyle'] [class*='md_9'] {width: 75%;}
[class^='mageStyle'] [class*='md_10'] {width: 83.33333333%;}
[class^='mageStyle'] [class*='md_11'] {width: 91.66666667%;}
[class^='mageStyle'] [class*='md_12'] {width: 100%;}
}
/***small device****/
@media only screen and (max-width: 700px) {
[class^='mageStyle'] [class*='sd_1'] {width: 8.3333333333%;}
[class^='mageStyle'] [class*='sd_2'] {width: 16.666666667%;}
[class^='mageStyle'] [class*='sd_3'] {width: 25%;}
[class^='mageStyle'] [class*='sd_4'] {width: 33.333333333%;}
[class^='mageStyle'] [class*='sd_5'] {width: 41.666666667%;}
[class^='mageStyle'] [class*='sd_6'] {width: 50%;}
[class^='mageStyle'] [class*='sd_7'] {width: 58.333333333%;}
[class^='mageStyle'] [class*='sd_8'] {width: 66.666666667%;}
[class^='mageStyle'] [class*='sd_9'] {width: 75%;}
[class^='mageStyle'] [class*='sd_10'] {width: 83.33333333%;}
[class^='mageStyle'] [class*='sd_11'] {width: 91.66666667%;}
[class^='mageStyle'] [class*='sd_12'] {width: 100%;}
}
/******extra small device*******/
@media only screen and (max-width: 500px) {
[class^='mageStyle'] [class*='es_1'] {width: 8.3333333333%;}
[class^='mageStyle'] [class*='es_2'] {width: 16.666666667%;}
[class^='mageStyle'] [class*='es_3'] {width: 25%;}
[class^='mageStyle'] [class*='es_4'] {width: 33.333333333%;}
[class^='mageStyle'] [class*='es_5'] {width: 41.666666667%;}
[class^='mageStyle'] [class*='es_6'] {width: 50%;}
[class^='mageStyle'] [class*='es_7'] {width: 58.333333333%;}
[class^='mageStyle'] [class*='es_8'] {width: 66.666666667%;}
[class^='mageStyle'] [class*='es_9'] {width: 75%;}
[class^='mageStyle'] [class*='es_10'] {width: 83.33333333%;}
[class^='mageStyle'] [class*='es_11'] {width: 91.66666667%;}
[class^='mageStyle'] [class*='es_12'] {width: 100%;}
}

View File

@ -0,0 +1,63 @@
[class^="mageStyle"] small {font-size: 60%;}
[class^="mageStyle"] span,
[class^="mageStyle"] strong {margin: 0 5px 0 0;}
/********Helper Class***********/
[class^="mageStyle"] .divider {display: block;height: 1px;background-color: #DDD;margin: 10px 0;}
.mage_disabled {cursor: no-drop !important;opacity: 0.2 !important;}
/**************/
[class^="mageStyle"] [class*="dNone"] {display: none;}
[class^="mageStyle"],
[class^="mageStyle"] div,
[class^="mageStyle"] [class*="dBlock"] {display: block;}
[class^="mageStyle"] [class*="dInlineBlock"],
[class^="mageStyle"] small,
[class^="mageStyle"] span,
[class^="mageStyle"] strong {display: inline-block;}
/**************/
[class^="mageStyle"] [class*="fLeft"] {float: left;}
[class^="mageStyle"] [class*="fRight"] {float: right;}
/**************/
[class^="mageStyle"] [class*="pFixed"] {position: fixed;}
[class^="mageStyle"] [class*="fullAbsolute"] {position: absolute;left: 0;top: 0;right: 0;bottom: 0;z-index: 11;width: 100%;height: 100%;}
/**************/
[class^="mageStyle"] [class*="textCenter"] {text-align: center;}
[class^="mageStyle"] [class*="tRight"] {text-align: right;}
/**************/
[class^="mageStyle"] [class*="dotted"] {border-style: dotted;}
[class*="border"] {border: 1px solid var(--default-border-color);}
[class*="bDot"] {border: 1px dotted var(--default-border-color) !important;}
[class*="bDash"] {border: 1px dashed var(--default-border-color) !important;}
[class*="b_r"] {border-right: 1px solid var(--default-border-color);}
[class*="b_r_dash"] {border-right: 1px dashed var(--default-border-color);}
[class*="b_r_dot"] {border-right: 1px dotted var(--default-border-color);}
/**************/
[class^="mageStyle"] [class*="padding"] {padding: var(--default-mp) !important;}
[class^="mageStyle"] [class*="pad_25"] {padding: 25px;}
[class^="mageStyle"] [class*="pad_xs"] {padding: 7px !important;}
[class^="mageStyle"] [class*="pad_l"] {padding-left: var(--default-mp) !important;}
/**************/
[class^="mageStyle"] [class*="mar_zero"],
[class^="mageStyle"] span[class*="icon"] {margin: 0 !important;}
[class^="mageStyle"] [class*="marT"] {margin-top: var(--default-mp) !important;}
[class^="mageStyle"] [class*="mar_tb"] {margin: var(--default-mp) 0 !important;}
[class^="mageStyle"] [class*="mar_txs_b"] {margin: var(--default-mp-xs) 0 var(--default-mp) 0 !important;}
[class^="mageStyle"] [class*="marT_XS"] {margin-top: var(--default-mp-xs) !important;}
[class^="mageStyle"] [class*="marB"] {margin-bottom: var(--default-mp) !important;}
[class^="mageStyle"] [class*="marBXs"] {margin-bottom: var(--default-mp-xs) !important;}
[class^="mageStyle"] [class*="mar_l"] {margin-left: var(--default-mp) !important;}
[class^="mageStyle"] [class*="mar_l_xs"] {margin-left: var(--default-mp-xs) !important;}
[class*="mt_40"] {margin-top: 40px !important;}
[class*="ml_20"] {margin-left: 20px !important;}
[class*="mt_25"] {margin-top: 25px !important;}
[class*="ml_25"] {margin-left: 25px !important;}

View File

@ -0,0 +1,41 @@
[class*='mage_icon']{display: inline-block;}
[class*='mage_icon_circle']{
height: 10px;width: 10px;
}
/*****bus icon******/
span.mage_bus_seat_icon{
position: relative;
width: 30px;
height: 35px;
border: 1px solid #ddd;
text-align: center;
}
span.mage_bus_seat_icon::before,
span.mage_bus_seat_icon::after,
span.mage_bus_seat_icon{
-webkit-border-radius: 2px;
border-radius: 2px;
}
span.mage_bus_seat_icon::before,
span.mage_bus_seat_icon::after{
content: "";
position: absolute;
width: 7px;
height: 20px;
border: 1px solid #ddd;
bottom: -1px;
background-color: #fff;
}
span.mage_bus_seat_icon::before{left: -4px;}
span.mage_bus_seat_icon::after{right: -4px;}
span.bus_handle{
position: absolute;
width: 25px;
height: 6px;
bottom:0;
left: 2px;
border-top: 1px solid #ddd;
background-color: #fff;
}

View File

@ -0,0 +1,6 @@
div[class*='mage_info'] {
padding: var(--default-mp);
background-color: var(--info-bg);
margin: var(--default-mp) 0 0 0;
}
div[class*='mage_info'] p {margin: 10px 0 0 0;}

View File

@ -0,0 +1,13 @@
[class^='mageStyle'] ul{list-style-type: none;}
/******list Horizontal*****/
ul.mage_list{margin: var(--default-mp) 0 0 0;}
ul.mage_list li{padding: var(--default-mp-xs) 0;}
/******All in one line*****/
[class^='mageStyle'] ul[class*='listInline'] li{text-align: center;border-right: 1px solid;}
[class^='mageStyle'] ul[class*='listInline'] li:last-child{border: none;}
[class^='mageStyle'] ul[class*='listInline'] li a{padding: var(--default-mp-xs);display: block;}
[class^='mageStyle'] ul[class*='listInline'] li.mage_active{background-color: var(--default-active-color)}
[class^='mageStyle'] ul[class*='listInline'] li.mage_active a{color: #fff;}
/***lint inline two li***/
ul.mage-list-double li{width: 50%;padding: var(--default-mp-xs);}
ul.mage-list-double li span{margin: 0 var(--default-mp-xs) 0 0;}

View File

@ -0,0 +1,26 @@
[class^="mageStyle"] [class*='defaultLoader']{
position: absolute;z-index: 11111;
left: 0;right: 0;top: 0;bottom: 0;
background-color: #777a;
font-size: 25px;
width: 100%;height: 100%;
max-width: 100vw;max-height: 100vh;
}
[class^="mageStyle"] [class*='defaultLoader'] span{
-webkit-border-radius: 50%;border-radius: 50%;
border-top: 5px solid #2C3E50;
border-right: 5px solid #febb02;
border-bottom: 5px solid red;
border-left: 5px solid #F2F2F2;
width: 50px;height: 50px;
-webkit-animation: spin 1000ms linear infinite;
animation: spin 1000ms linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
25% { transform: rotate(90deg); }
50% { transform: rotate(180deg); }
75% { transform: rotate(270deg); }
100% { transform: rotate(360deg); }
}

View File

@ -0,0 +1,2 @@
/************Media**********/
[class^='mageStyle'] img{width: auto;height: auto;max-width: 100%;}

View File

@ -0,0 +1 @@
[class^='mageStyle'] ul[class^='mage_menu'] li {padding: 0 var(--default-mp);}

View File

@ -0,0 +1,24 @@
[data-target-popup]{cursor: pointer;}
[class^="mageStyle"] [class*="magePopup"] {
display: none;position: fixed;
left: 0;right: 0;top: 0;bottom: 0;z-index: 1111;
overflow: hidden auto;background: #000C;
}
[class^="mageStyle"] [class*="magePopup"] .popupMainArea {
min-width: 500px;max-width: 700px;width: auto;
min-height: 50vh;max-height: 100vh;height: auto;
background-color: #FFF;
border: 20px solid #444;
padding: 10px;
position: relative;
}
[class^="mageStyle"] [class*="magePopup"] .popupClose{
position: fixed;z-index: 1111;cursor: pointer;
top: 50px;right: 50px;
width: 50px;height: 50px;
background-color: #444;color: #fff;
font-size: 20px;
}
[class^="mageStyle"] [class*="magePopup"] .popupClose:hover{color: #444;background-color: #fff;}
[class^="mageStyle"] [class*="magePopup"] [class*='defaultLayout']{margin: 0;}

View File

@ -0,0 +1,46 @@
/************Border radius**********/
[class^='mageStyle'] [class*='magePopup'] .popupMainArea,
[class^="mageStyle"] [class*="magePopup"] .popupClose,
[class*='radius'],
[class^='mageStyle'] img,
[class^='mageStyle'] button[class*='defaultButton'],
[class^='mageStyle'] [class*='defaultLayout'],
div.mage_item_list,
[class*='mageForm'] [class*='formControl'],
[class*='mageStyle'] [class*='clickSlide'],
[class*='slideIndicatorItem'],
[class*='faqItem'],
div.mage_form_qty {
-webkit-border-radius: var(--default-border-radious);
border-radius: var(--default-border-radious);
}
[class*='radiusTop'],
div.mage_input_select [class*='formControl']:focus {
-webkit-border-radius: var(--default-border-radious) var(--default-border-radious) 0 0;
border-radius: var(--default-border-radious) var(--default-border-radious) 0 0;
}
ul.mage_input_select_list {
-webkit-border-radius: 0 0 var(--default-border-radious) var(--default-border-radious) ;
border-radius: 0 0 var(--default-border-radious) var(--default-border-radious);
}
[class*='mage_icon_circle'] {
-webkit-border-radius: 50%;
border-radius: 50%;
}
[class*='mediumRadius'] {
-webkit-border-radius: var(--medium-border-radious);
border-radius: var(--medium-border-radious);
}
[class*='mediumRadiusTop'] {
-webkit-border-radius: var(--medium-border-radious) var(--medium-border-radious) 0 0;
border-radius: var(--medium-border-radious) var(--medium-border-radious) 0 0;
}
[class*='mediumRadiusBottom'] {
-webkit-border-radius: 0 0 var(--medium-border-radious) var(--medium-border-radious);
border-radius: 0 0 var(--medium-border-radious) var(--medium-border-radious);
}
[class^='mageStyle'] [class*='zeroRadius'],
div.mage_form_qty [class*='formControl'] {
-webkit-border-radius: 0;
border-radius: 0;
}

View File

@ -0,0 +1,12 @@
@media only screen and (max-width: 1100px) {
}
@media only screen and (max-width: 900px) {
}
@media only screen and (max-width: 700px) {
}
@media only screen and (max-width: 500px) {
[class^="mageStyle"] [class*="dNoneEs"] {display: none;}
}

View File

@ -0,0 +1,21 @@
/************Box shadow**********/
[class*='slideIndicatorItem'].active,
.mage_item_list.booked.active,
.mage_bus_seat_item.mage_selected span.mage_bus_seat_icon{
-webkit-box-shadow: 0 2px 10px #444;
-moz-box-shadow: 0 2px 10px #444;
-o-box-shadow: 0 2px 10px #444;
box-shadow: 0 2px 10px #444;
}
ul.mage_input_select_list{
-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
-moz-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
-o-box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
box-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
}
[class^='mageStyle'] button[class*='mage_button']{
-webkit-box-shadow: var(--button-shadows);
-moz-box-shadow: var(--button-shadows);
-o-box-shadow: var(--button-shadows);
box-shadow: var(--button-shadows);
}

View File

@ -0,0 +1,3 @@
[class^='mageStyle'] table {table-layout: fixed;border-collapse: collapse;text-align: center;}
[class^='mageStyle'] table th,
[class^='mageStyle'] table td {border: 1px solid var(--default-border-color);}

View File

@ -0,0 +1,4 @@
[class^="mageStyle"] .mageTabs ul .in {background-color: #0AB21B;color: #FFF;}
[class^="mageStyle"] .tabsItem {display: none;}
[class^="mageStyle"] .tabsItem.active {display: block;}
[class^="mageStyle"] .tabsContent {margin: 10px 0 0 0;position: relative;}

View File

@ -0,0 +1,101 @@
/******Default*******/
:root {
--font-family: "Poppins", sans-serif;
--custom-font-family: "Lato", sans-serif;
--default-font-size: 15px;
--default-font-weight: normal;
--default-color: #273B5E;
--container-max-width: 1200px;
--default-mp: 15px;
--default-mp-xs: 7px;
--default-border-radious: 5px;
--medium-border-radious: 10px;
--default-border-color: #DDD;
--default-active-color: #0E6BB7;
--default-bg: #FFF;
}
/*****Font size********/
:root {
--font-size-label: 14px;
--font-size-h6: 16px;
--font-size-h5: 18px;
--font-size-h4: 20px;
--font-size-h3: 25px;
--font-size-h2: 30px;
--font-size-h1: 50px;
}
/*****Button********/
:root {
--button-bg: #0071C2;
--button-color: #FFF;
--button-fs: 16px;
--button-height: 40px;
--button-width: 120px;
--button-shadows: 1px 1px 4px 3px #2C3E50CC;
}
/*****Header********/
:root {
--header-bg: #2C3E50;
--header-color: #FFF;
--header-padding: 20px 0;
--header-fs: 16px;
--header-shadows: 0 3px 20px rgba(0, 0, 0, 0.1);
}
/*****Section********/
:root {
--section-bg: #F2F2F2;
--section-padding: 30px 0;
--section-margin: 0;
--left-sidebar-width: 300px;
--main-content-width: calc(100% - 315px);
--right-sidebar-width: 300px;
}
/******Footer*******/
:root {
--footer-bg: #FFF;
--footer-padding: 0;
--footer-fs: 16px;
--footer-color: #777;
--footer-top-bg: tranparent;
--footer-top-color: #555;
--footer-top-padding: 50px 0;
--footer-bottom-bg: #2C3E50;
--footer-bottom-color: #FFF;
--footer-bottom-padding: 15px 0;
}
/*****Bus seat color********/
:root {
--seat-selected-bg-color: green;
--seat-selected-border-color: darkgreen;
--seat-selected-text-color: #FFF;
--seat-booked-bg-color: #777;
--seat-booked-border-color: #FFF;
--seat-booked-text-color: #FFF;
--seat-confirm-bg-color: #777;
--seat-confirm-border-color: #FFF;
--seat-confirm-text-color: #FFF;
--seat-cart-bg-color: #77BF44;
--seat-cart-border-color: darkgreen;
--seat-cart-text-color: #FFF;
}
/*******Color***********/
:root {
--info-bg: #F2F2F2;
--success-color: #49ab56;
--danger-color: #C00;
--light-color: #F2F2F2;
--yellow-color: #FEBB02;
--blue-color: #07C;
}
/*****Click Slider******/
:root {
--click-slide-bg: #F2F2F2;
}

119
inc/welcome/css/welcome.css Normal file
View File

@ -0,0 +1,119 @@
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Poppins:wght@300;400;500;700&display=swap');
@import "include/variable.css";
@import "include/general.css";
@import "include/grid.css";
@import "include/font-size.css";
@import "include/button.css";
@import "include/loader.css";
@import "include/default.css";
@import "include/helper.css";
@import "include/flex.css";
@import "include/shadows.css";
@import "include/radious.css";
@import "include/icons.css";
@import "include/color.css";
@import "include/media.css";
@import "include/menu.css";
@import "include/click-slider.css";
@import "include/popup.css";
@import "include/form.css";
@import "include/list.css";
@import "include/table.css";
@import "include/tabs.css";
@import "include/faq.css";
@import "include/info.css";
@import "include/content.css";
@import "include/custom.css";
@import "include/responsive.css";
@import "include/cart.css";
.mage-event-welcome {
background: #fff;
padding: 20px;
border-radius: 10px 10px 10px 10px;
}
h2.nav-tab-wrapper.mage-event-welcome-tab {
border: 0;
}
h2.nav-tab-wrapper.mage-event-welcome-tab a.nav-tab {
background: #6c57c1;
border-radius: 10px 10px 0px 0px;
border-color: #fff;
margin-left: 0.3em;
font-size: 16px;
padding: 10px 20px;
color: #fff;
}
h2.nav-tab-wrapper.mage-event-welcome-tab a.nav-tab.nav-tab-active {
background: #fff;
color: #000;
}
header.mageStyle h2, header.mageStyle h3 {
color: #fff;
}
header.mageStyle {
padding: 0;
margin-bottom: -6px;
}
.addon_list_sec .mep_addon_list li img{
max-width: 100%;
width: auto;
}
.addon_list_sec .mep_addon_list li {
border: 1px solid #ddd!important;
display: inline-block!important;
float: left;
margin: 10px!important;
min-height: 405px;
padding: 0px;
position: relative;
text-align: center;
vertical-align: top;
width: 31.2%!important;
box-shadow: 3px 4px 5px #d9e1e7;
background: #fff;
overflow: hidden;
}
.addon_list_sec .mep_addon_list li a {
display: block;
background: #0000b5;
color: #fff;
width: 100%;
margin: 0 auto;
padding: 10px;
text-decoration: none;
font-size: 15px;
position: absolute;
bottom: 0;
left: 0;
right: auto;
}
.addon_list_sec .mep_addon_list li h3 {
margin-top: 10px;
}
.addon_list_sec .mep_addon_list li p {
padding: 0 15px;
font-size: 12px;
}
.addon_list_sec .mep_addon_list li h4 {
background: #e74635;
color: #fff;
font-size: 20px;
padding: 10px;
width: 50px;
position: absolute;
bottom: 40%;
top: auto;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

BIN
inc/welcome/img/gift.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
inc/welcome/img/graph.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
inc/welcome/img/icon_1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

BIN
inc/welcome/img/icon_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
inc/welcome/img/icon_3.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

BIN
inc/welcome/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

BIN
inc/welcome/img/preset.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
inc/welcome/img/reading.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

BIN
inc/welcome/img/refresh.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
inc/welcome/img/rocket.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

BIN
inc/welcome/img/setting.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
inc/welcome/img/top_bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

318
inc/welcome/support.php Normal file
View File

@ -0,0 +1,318 @@
<header class="mageStyle">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/top_bg.png" alt="banner" class="zeroRadius" />
<div class="topBanner fullAbsolute alignCenter">
<div class="mage_container">
<div class="mage_row">
<div class="col_3 sd_2 alignCenter">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/logo.png" alt="logo" />
</div>
<div class="col_5 sd_6 alignCenter">
<div class="textContent">
<h3>Thanks a lot</h3>
<h2 class="extraBold">For choosing MageAddons</h2>
</div>
</div>
<div class="col_4">
<div class="flexColumn top_icon_area">
<ul class="flexEqual">
<li></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/refresh.png" alt="refresh" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/rocket.png" alt="rocket" /></a></li>
</ul>
<ul class="flexEqual">
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/setting.png" alt="settings" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/reading.png" alt="reading" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/graph.png" alt="graph" /></a></li>
</ul>
<ul class="flexEqual">
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/gift.png" alt="gift" /></a></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="mageStyle">
<div class="knowledge" style="background:white;">
<div class="mage_container shortcode">
<div class="mage_row">
<div class="col_12 alignCenter">
<div>
<h2 style="text-align: center;"><strong>Here is All Shortcode list we have available</strong></h2>
<ul>
<li>All Event List Style : <pre>[event-list style='list'] </pre><a href="https://vaincode.com/reevent/all-event-list/" target="_blank">View Example</a></li>
<li>All Event List minimal Style<pre> [event-list style='minimal' show=10 pagination='yes'] </pre><a href="https://vaincode.com/reevent/event-list-minimal-style/">View Example</a></li>
<li>All Event list in Native Style <pre>[event-list style='native' show='8' pagination='yes'] </pre> <a href="https://vaincode.com/reevent/event-list-native-style/">View Example</a></li>
<li>All Event Grid Style : <pre>[event-list column=3] </pre><a href="https://vaincode.com/reevent/event-list-style/" target="_blank" rel="noopener noreferrer">View Example</a></li>
<li>Show only Event Title with Order: <pre>[[event-list style='title']</pre><a href="https://vaincode.com/reevent/event-list-title-only/">View Example</a></li>
<li>All Events With Organizer filter :<pre> [event-list org-filter=yes style=grid]</pre><a href="https://vaincode.com/reevent/all-event-with-organizer-filter/" target="_blank">View Example</a></li>
<li>All Events With Pagination :<pre> [event-list style='grid' pagination=yes show=4]</pre> <a href="https://vaincode.com/reevent/all-event-with-pagination/" target="_blank">View Example</a></li>
<li>All Events with category Filter :<pre> [event-list cat-filter=yes style=grid] </pre><a href="https://vaincode.com/reevent/all-event-with-category-filter/" target="_blank">View Example</a></li>
<li>Event by Category :<pre> [event-list cat=44]</pre> <a href="https://vaincode.com/reevent/event-by-category/" target="_blank" rel="noopener noreferrer">View Example</a> Here 44 is Category Id, you need to replace as your need</li>
<li>Event by Organizer: <pre>[event-list org=49] </pre><a href="https://vaincode.com/reevent/event-by-organization/" target="_blank" rel="noopener noreferrer">View Example </a>Here 49 is organizer ID, you can to replace as your need</li>
<li>Event Expire list: <pre>[expire-event-list]</pre><a href="https://vaincode.com/reevent/expire-events/" target="_blank" rel="noopener noreferrer">View Example</a></li>
<li>Show only 10 events:<pre> [event-list show='10']</pre>you can change show='Any number as your need'</li>
<li>Show events grid with 3 column: <pre>[event-list column=3]</pre>Here 3 is number of colunn in grid, you need to replace as need</li>
<li>Show Events by a City: <pre>[event-list style='grid' city='Dhaka' column=3 show=8]</pre>Here Washington is city name, you can change as your need</li>
<li>Show list of City name of upcoming Events: <pre>[event-city-list] </pre>All Upcoming Events City name will display with this Shortcode</li>
<li>Event Filter by country <pre>[event-list style='grid' country='India' column=3 show=8]</pre></li>
<li>Event Vertical Timeline: <pre>[event-list style='timeline' timeline-mode='vertical'] </pre><a href="https://vaincode.com/reevent/event-list-vertical-timeline-view/">View Example</a></li>
<li>Event Horizontal Timeline<pre> [event-list style='timeline' timeline-mode='horizontal'] </pre> <a href="https://vaincode.com/reevent/event-list-horizontal-timeline-view/">View Example</a></li>
<li>Event Carousal Style<pre> [event-list style='grid' pagination='carousal' carousal-dots='yes' carousal-nav='yes' column=3]</pre><a href="https://vaincode.com/reevent/event-carousal/">View Example</a></li>
<li>EventWise Speaker list: <pre>[event-speaker-list event=EventID]</pre> <a href="https://vaincode.com/reevent/speaker-list/">View Example</a></li>
<li>Event Cart Section only:<pre>[[event-add-cart-section event=EventID]</pre> <a href="https://vaincode.com/reevent/event-add-to-cart-section/">View Example</a></li>
</ul>
</div>
</div>
<!--<div class="col_6 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/knowledge_img.png" alt="feature" />
</div>-->
</div>
</div>
</div>
<div class="faqContent">
<div class="mage_container">
<div class="mage_row">
<div class="col_12">
<div class="postDash customButton customIcon">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/faq_icon.png" alt="icon" />
</div>
<div class="justifyBetween">
<div>
<h3 class="marB">Frequently Asked Questions</h3>
<p>Here is list of question that may help.</p>
</div>
<a href="#" class="buttonOutline allCenter_radius_transition_mar_zero">Take me to the knowledge page</a>
</div>
</div>
<div class="col_12 shadow_one dFlex mt_40 marB">
<div class="col_6 sd_12 pad_25">
<h5>Where can I find “Attendee registration Form?</h5>
<p class="marT">To enable attendee form you must first install a premium addon name “Form Builder”. Once you are done with installing Click on “Events”> Click on “All Events”> Click on Edit of any existing event> Scroll down below to find "Attendee Registration Form"</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>How can I see event wise registered attendee list?</h5>
<p class="marT">: If you visit attendee list menu in event section then you will see all attendee list here. You can filter choosing event name and date if event is recurring event.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>How can I Export attendee list as CSV?</h5>
<p class="marT">If you visit attendee list menu in event section then you will see all attendee list here. You can filter choosing event name and date if event is recurring event. After filtering right section there is 2 button to export attendee and extra service</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>My plugin page shows 404 error?</h5>
<p class="marT">: Please re-save the permalink to solve the problem.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>Where Can I change Event Slug Url?</h5>
<p class="marT">In Event Settings area we have slug changing option. You can change it and resave permalink to avoid 404 error.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>Where Can I configure Pdf Email ?</h5>
<p class="marT">: If you visit Event settings page then You will see PDF email tab top right, you can configure pdf email here.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>I have configured correctly but pdf email I am not getting.</h5>
<p class="marT">PDF email with pdf send based on some configuration. If order status processing or complete then only pdf email will send as we considered these 2 order status come after order payment done. If order status holds or pending, then email of pdf will not send.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>Can I hide any section from event list and details page</h5>
<p class="marT">: Yes You can hide any section from event list and details page. If you go event settings area in general section, you will find lots of settings regarding all section.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>How Can I configure Virtual Event</h5>
<p class="marT">: For virtual event we know there should not have any location or physical address so we recommend to use template virtual that we have during event adding time and also you can use location hide settings from list and details page.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>I installed event manager plugin but it does not work?</h5>
<p class="marT">: Please install WooCommerce plugin first, before installing any plugin.</p>
</div>
<div class="col_6 sd_12 pad_25">
<h5>Do you offer customization?</h5>
<p class="marT">: Yes! we offer customization service for our client. If you want any new features dont
hesitate to contact us. Email: magepeopleteam@gmail.com.</p>
</div>
</div>
<!--<div class="col_12 mt_40 justifyBetween">
<div class="shadow_two sd_12 pad_25">
<div class="postDash customButton customIcon">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/faq_icon.png" alt="icon" />
</div>
<h3>Support And Feedback</h3>
<p class="marT">Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean lacinia bibendum. Cum sociis natoque penatibus et magnis dis parturient montes </p>
<p class="marT textColor">Cum sociis natoque penatibus et magnis dis parturientmo
ntes nascetur ridiculus mus aenean lacinia bibendum. </p>
<a href="#" class="customButton allCenter customSupport marT">Get Support</a>
</div>
<div class="shadow_two sd_12 pad_25">
<div class="postDash customButton customIcon">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/faq_icon.png" alt="icon" />
</div>
<h3>Newsletter Subscription</h3>
<p class="marT">Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean lacinia bibendum. Cum sociis natoque penatibus et magnis dis parturient montes </p>
<p class="marT textColor">Cum sociis natoque penatibus et magnis dis parturientmo
ntes nascetur ridiculus mus aenean lacinia bibendum. </p>
<a href="#" class="customButton allCenter customSubscription marT">Subscrible Now</a>
</div>
</div>-->
</div>
</div>
</div>
<!--<div class="tutorial">
<div class="mage_container">
<div class="mage_row">
<div class="col_12">
<div>
<div class="postDash customButton customIcon">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/tutorial_icon.png" alt="icon" />
</div>
<h2>Video Tutorial</h2>
<p>Cum sociis natoque penatibus et magnis dis parturient montes nascetur </p>
</div>
<div class="mage_row">
<div class="col_4_sd_6_es_12_padding">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/tutorial_img.png" alt="tutorial" />
<h4 class="textCenter marT">Cross Domain Copy Paste (Pro)</h4>
</div>
<div class="col_4_sd_6_es_12_padding">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/tutorial_img.png" alt="tutorial" />
<h4 class="textCenter marT">Mage Effects-CSS Transform</h4>
</div>
<div class="col_4_sd_6_es_12_padding">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/tutorial_img.png" alt="tutorial" />
<h4 class="textCenter marT">Mage Effects-Floating Effects</h4>
</div>
</div>
<div class="justifyCenter">
<button class="widgetButton allCenter load_more" type="button">View Load More</button>
</div>
</div>
</div>
</div>
</div>-->
<div class="missing_feature">
<div class="mage_container">
<div class="mage_row">
<div class="col_6 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/missing_img.png" alt="icon" />
</div>
<div class="col_6 sd_12 pad_25">
<div class="postDash customButton customIcon">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/faq_icon.png" alt="icon" />
</div>
<h3>Missing And Feature?</h3>
<p class="marT"> We are always interested to enhance our plugin feature if you have a good idea please let us know. </p>
<a href="https://mage-people.com/contact/" target="_blank" class="customButton allCenter marT">Request Feature</a>
</div>
</div>
</div>
</div>
<!--<div class="withOurWork">
<div class="mage_container">
<div class="withWork allCenter">
<div class="col_4 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/withMage.png" alt="icon" />
</div>
<div class="col_8 sd_12 pad_25">
<h3>MagePeople With Our Work?</h3>
<p class="marT">Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean lacinia bib endum. Cum sociis natoque penatibus et magnis dis parturient montesCum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean Cum sociis natoque penatibus et magnis dis parturient montes nascetu parturient montes nascetur.</p>
<a href="#" class="customButton allCenter marT">I'm Mage to Give You 5</a>
</div>
</div>
</div>
</div>-->
</section>
<style>
/* List */
.shortcode ul {
counter-reset: index;
padding: 0;
}
/* List element */
.shortcode li {
counter-increment: index;
display: flex;
align-items: center;
padding: 12px 0;
box-sizing: border-box;
font-size: 16px;
}
/* Element counter */
.shortcode li::before {
content: counters(index, ".", decimal-leading-zero);
font-size: 1.5rem;
text-align: right;
font-weight: bold;
min-width: 50px;
padding-right: 12px;
font-variant-numeric: tabular-nums;
align-self: flex-start;
background-image: linear-gradient(to bottom, aquamarine, orangered);
background-attachment: fixed;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
/* Element separation */
.shortcode li + li {
border-top: 1px solid rgba(255,255,255,0.2);
}
.shortcode pre{
background: beige;
padding: 4px;
color: black;
margin: 0px 10px;
font-weight: bold;
font-size: 16px;
}
.shortcode h2{
border: 2px solid #ff555d;
color: #ff555d;
margin-bottom:40px;
width:60%;
}
</style>

167
inc/welcome/welcome.php Normal file
View File

@ -0,0 +1,167 @@
<header class="mageStyle">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/top_bg.png" alt="banner" class="zeroRadius" />
<div class="topBanner fullAbsolute alignCenter">
<div class="mage_container">
<div class="mage_row">
<div class="col_3 sd_2 alignCenter">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/logo.png" alt="logo" />
</div>
<div class="col_5 sd_6 alignCenter">
<div class="textContent">
<h3>What's Inside</h3>
<h2 class="extraBold">The MagePeopleAddons Pro</h2>
</div>
</div>
<div class="col_4">
<div class="flexColumn top_icon_area">
<ul class="flexEqual">
<li></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/refresh.png" alt="refresh" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/rocket.png" alt="rocket" /></a></li>
</ul>
<ul class="flexEqual">
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/setting.png" alt="settings" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/reading.png" alt="reading" /></a></li>
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/graph.png" alt="graph" /></a></li>
</ul>
<ul class="flexEqual">
<li><a href="#"><img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/gift.png" alt="gift" /></a></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<section class="mageStyle">
<!--<div class="features">
<div class="mage_container">
<div class="mage_row">
<div class="col_12">
<div class="justifyCenter">
<span class="preDash postDash customButton allCenter">PRO</span>
</div>
<h1 class="dBlock textCenter">Features</h1>
</div>
<div class="col_7 sd_12 alignCenter">
<div>
<h2>Cross Domain Copy Paste</h2>
<p>Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean lacinia bibendum. Cum sociis natoque penatibus et magnis dis parturient montes Cum sociis natoque penatibus</p>
<label><span class="fa fa-check-circle"></span>Extensions to step-up your install</label>
<label><span class="fa fa-check-circle"></span>Free 24-7 Priority Support</label>
<a href="#" class="buttonOutline allCenter_radius_transition">Succeed Today</a>
</div>
</div>
<div class="col_5 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/feature_img.png" alt="feature" />
</div>
</div>
</div>
</div>
<div class="preset">
<div class="mage_container">
<div class="mage_row">
<div class="col_6 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/preset.png" alt="preset" />
</div>
<div class="col_6 sd_12 alignCenter">
<div>
<span class="postDash customButton allCenter">PRO</span>
<h2>Preset</h2>
<p>Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus mus aenean lacinia bibendum. Cum sociis natoque penatibus et magnis dis parturient montes Cum sociis natoque penatibus et magnis dis parturient montes nascetur ridiculus</p>
<a href="#" class="buttonOutline allCenter_radius_transition">Succeed Today</a>
</div>
</div>
</div>
</div>
</div>-->
<div class="unlimited_section">
<div class="mage_container">
<div class="mage_row">
<div class="col_6 sd_12 alignCenter">
<div>
<span class="postDash buttonOutline allCenter" style="margin-bottom:30px;">PRO VERSION FEATURES</span>
<h2>Attendee Form buider for attendee management Pdf Ticket and Emailing Feature.</h2>
<p>Event Manager Pro feature include two addons form builder and pdf ticket and emailing feature. with this pro version someone can take any kind information of attendee, attendee list can be exported as CSV. pdf ticket can send to buyer email
after ticket purchasing etc.</p>
<div>
<div class="alignCenter content_area nowrap">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/icon_1.png" alt="icon" />
<div class="textContent">
<h4>Attendee Management</h4>
<p>Attendee can be managed easily with attendee form builder and attendee information can edit also can export as CSV</p>
</div>
</div>
<div class="alignCenter content_area nowrap">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/icon_2.png" alt="icon" />
<div class="textContent">
<h4>PDF Ticketing </h4>
<p>every ticket purchased a pdf ticket will be generate that can print as entry document, different pdf template possible.</p>
</div>
</div>
<div class="alignCenter content_area nowrap">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/icon_3.png" alt="icon" />
<div class="textContent">
<h4>Emailing Features</h4>
<p>Pro version has email feature, after purchase complete, pdf ticket can send to buyer by email, it has customize email shortcode.</p>
</div>
</div>
</div>
<a href="https://mage-people.com/product/mage-woo-event-booking-manager-pro/" target="_blank" class="buttonOutline allCenter_radius_transition customButton">Bu Event Manager Pro Today</a>
</div>
</div>
<div class="col_6 sd_12">
<img src="<?php echo plugin_dir_url(__DIR__).'welcome/' ?>img/ullimited_img.png" alt="unlimited" />
</div>
</div>
</div>
</div>
<div class="widget">
<div class="mage_container">
<div class="mage_row">
<div class="col_12">
<div class="justifyCenter">
<span class="preDash postDash customButton allCenter">Available Supportive Addon List</span>
</div>
<h1 class="textCenter">Addons</h1>
<div class="justifyBetween">
<?php
$json = file_get_contents('http://vaincode.com/update/addon-list.json');
$obj = json_decode($json, true);
if(is_array($obj) && sizeof($obj) > 0){
echo '<div class="addon_list_sec"><ul class="mep_addon_list">';
foreach ($obj as $list) {
echo '<li>';
echo '<img src='.$list['banner'].'>';
echo '<h3>'.$list['name'].'</h3>';
// echo '<p>'.$list['excerpt'].'</p>';
echo '<h4>'.$list['price'].'</h4>';
echo '<a href='.$list['url'].' target="_blank">'.$list['btn_txt'].'</a>';
echo '</li>';
}
echo '</ul></div>';
}
?>
</div>
</div>
</div>
</div>
</div>
<div class="getPro">
<div class="mage_container">
<div class="mage_row">
<div class="col_12">
<h2 class="textCenter">Get Pro and Others Available Addon to get all these exciting features</h2>
<div class="justifyCenter">
<a href="https://mage-people.com/product/mage-woo-event-booking-manager-pro/" target="_blank" class="prePostDash customButton allCenter">Buy Now</a>
</div>
</div>
</div>
</div>
</div>
</section>
<style>
.widget h3{font-size:18px;}
</style>

View File

@ -584,4 +584,17 @@ More...
Code Optimized & Improved
Location Typo fixed in event list
Event Confirmation email sending based on order status settings added
20 July 2020*
= 3.3.2 =
* Update Release:
Code Optimized & Improved
Event Category & Organizer Custom Slug added in settings page
Event List Carousel Settings added
Card Decline Attendee reduced issue fixed
Calendar issue fixed
Decimal Amount calculation issue fixed in cart
Google Schema text warning issue fixed
20 July 2020*

View File

@ -46,11 +46,19 @@ $speaker_status = mep_get_option('mep_enable_speaker_list', 'general
</div>
</div>
<?php } ?>
<?php if ($hide_share_details == 'no') { ?>
<div class="mep-default-sidrbar-social">
<?php do_action('mep_event_social_share'); ?>
</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 } ?>
</div>
<div class="bristol_center_box">
<?php if ($hide_total_seat_details == 'no') { ?>

View File

@ -3,7 +3,7 @@
* Plugin Name: Woocommerce Events Manager
* Plugin URI: http://mage-people.com
* Description: A Complete Event Solution for WordPress by MagePeople..
* Version: 3.3.1
* Version: 3.3.2
* Author: MagePeople Team
* Author URI: http://www.mage-people.com/
* Text Domain: mage-eventpress
@ -16,15 +16,26 @@ if (!defined('ABSPATH')) {
die;
} // Cannot access pages directly.
include_once(ABSPATH . 'wp-admin/includes/plugin.php');
if (is_plugin_active('woocommerce/woocommerce.php')) {
function appsero_init_tracker_mage_eventpress() {
if ( ! class_exists( 'Appsero\Client' ) ) {
function appsero_init_tracker_mage_eventpress()
{
if (!class_exists('Appsero\Client')) {
require_once __DIR__ . '/lib/appsero/src/Client.php';
}
$client = new Appsero\Client( '08cd627c-4ed9-49cf-a9b5-1536ec384a5a', 'WooCommerce Event Manager', __FILE__ );
$client = new Appsero\Client('08cd627c-4ed9-49cf-a9b5-1536ec384a5a', 'WooCommerce Event Manager', __FILE__);
$client->insights()->init();
}
}
function mep_event_activation_redirect($plugin)
{
if ($plugin == plugin_basename(__FILE__)) {
exit(wp_redirect(admin_url('edit.php?post_type=mep_events&page=mep_event_welcome_page')));
}
}
add_action('activated_plugin', 'mep_event_activation_redirect');
require_once(dirname(__FILE__) . "/inc/mep_file_include.php");
} else {
function mep_admin_notice_wc_not_active()