v 3.6.1 released
This commit is contained in:
parent
3b566e303f
commit
cf10bb8c8b
File diff suppressed because it is too large
Load Diff
2361
css/jquery-ui.css
vendored
2361
css/jquery-ui.css
vendored
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -48,6 +48,7 @@ function mep_add_admin_scripts($hook)
|
||||
wp_enqueue_script('jquery-ui-core');
|
||||
wp_enqueue_script('jquery-ui-datepicker');
|
||||
wp_enqueue_script('jquery-ui-sortable');
|
||||
wp_enqueue_script('jquery-ui-accordion');
|
||||
wp_enqueue_style('wp-color-picker');
|
||||
wp_enqueue_script('wp-color-picker');
|
||||
wp_enqueue_script('magepeople-options-framework', plugins_url('js/mage-options-framework.js', __DIR__), array('jquery'));
|
||||
|
@ -152,7 +152,7 @@ function mep_fw_meta_boxs()
|
||||
);
|
||||
$events_faq_meta_args = array(
|
||||
'meta_box_id' => 'mep_event_faq_meta_boxes',
|
||||
'meta_box_title' => '<span class="dashicons dashicons-info"></span> '.__('F.A.Q', 'mage-eventpress'),
|
||||
'meta_box_title' => '<i class="fas fa-question-circle"></i>'.__('F.A.Q', 'mage-eventpress'),
|
||||
'screen' => array('mep_events'),
|
||||
'context' => 'normal',
|
||||
'priority' => 'high',
|
||||
@ -208,7 +208,7 @@ function mep_fw_meta_boxs()
|
||||
);
|
||||
$events_dd_meta_args = array(
|
||||
'meta_box_id' => 'mep_event_dd_meta_boxes',
|
||||
'meta_box_title' => '<span class="dashicons dashicons-analytics"></span> '.__('Daywise Details', 'mage-eventpress'),
|
||||
'meta_box_title' => '<i class="fas fa-newspaper"></i>'.__('Daywise Details', 'mage-eventpress'),
|
||||
'screen' => array('mep_events'),
|
||||
'context' => 'normal',
|
||||
'priority' => 'high',
|
||||
@ -301,7 +301,7 @@ function mep_fw_meta_boxs()
|
||||
);
|
||||
$email_body_meta_args = array(
|
||||
'meta_box_id' => 'mep_event_email_body_meta_boxes',
|
||||
'meta_box_title' => '<span class="dashicons dashicons-email"></span> '.__('Email Text', 'mage-eventpress'),
|
||||
'meta_box_title' => '<i class="far fa-envelope-open"></i>'.__('Email Text', 'mage-eventpress'),
|
||||
//'callback' => '_meta_box_callback',
|
||||
'screen' => array('mep_events'),
|
||||
'context' => 'normal', // 'normal', 'side', and 'advanced'
|
||||
|
@ -12,7 +12,7 @@ class MP_Event_All_Info_In_One
|
||||
public function mp_event_all_info_in_tab()
|
||||
{
|
||||
$event_label = mep_get_option('mep_event_label', 'general_setting_sec', 'Events');
|
||||
add_meta_box('mp_event_all_info_in_tab', __('<span class="dashicons dashicons-info"></span>' . $event_label . ' Information : ', 'mage-eventpress') . get_the_title(get_the_id()), array($this, 'mp_event_all_in_tab'), 'mep_events', 'normal', 'high');
|
||||
add_meta_box('mp_event_all_info_in_tab', __('<i class="fas fa-info-circle"></i> ' . $event_label . ' Information : ', 'mage-eventpress') . get_the_title(get_the_id()), array($this, 'mp_event_all_in_tab'), 'mep_events', 'normal', 'high');
|
||||
add_meta_box('mep-event-template', __('Template', 'mage-eventpress'), array($this, 'mep_event_template_meta_box_cb'), 'mep_events', 'side', 'low');
|
||||
}
|
||||
|
||||
@ -26,20 +26,20 @@ class MP_Event_All_Info_In_One
|
||||
<ul>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_location', $post_id); ?>
|
||||
<li data-target-tabs="#mp_event_venue">
|
||||
<span class="dashicons dashicons-location"></span> <?php esc_html_e('Venue/Location', 'mage-eventpress'); ?>
|
||||
<i class="fas fa-map-marked"></i><?php esc_html_e('Venue/Location', 'mage-eventpress'); ?>
|
||||
</li>
|
||||
<?php do_action('mep_admin_event_details_after_tab_name_location', $post_id); ?>
|
||||
<li data-target-tabs="#mp_ticket_type_pricing">
|
||||
<span class="dashicons dashicons-buddicons-tracking"></span> <?php esc_html_e('Ticket & Pricing', 'mage-eventpress'); ?>
|
||||
<i class="fas fa-dollar-sign"></i><?php esc_html_e('Ticket & Pricing', 'mage-eventpress'); ?>
|
||||
</li>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_ticket_type', $post_id); ?>
|
||||
<li data-target-tabs="#mp_event_time">
|
||||
<span class="dashicons dashicons-calendar-alt"></span> <?php esc_html_e('Date & Time', 'mage-eventpress'); ?>
|
||||
<i class="far fa-calendar-alt"></i><?php esc_html_e('Date & Time', 'mage-eventpress'); ?>
|
||||
</li>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_date_time', $post_id); ?>
|
||||
|
||||
<li data-target-tabs="#mp_event_settings">
|
||||
<span class="dashicons dashicons-admin-generic"></span> <?php esc_html_e('Settings', 'mage-eventpress'); ?>
|
||||
<i class="fas fa-users-cog"></i><?php esc_html_e('Settings', 'mage-eventpress'); ?>
|
||||
</li>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_settings', $post_id); ?>
|
||||
<?php if (get_option('woocommerce_calc_taxes') == 'yes') { ?>
|
||||
@ -49,7 +49,7 @@ class MP_Event_All_Info_In_One
|
||||
<?php } ?>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_tax', $post_id); ?>
|
||||
<li data-target-tabs="#mp_event_rich_text">
|
||||
<span class="dashicons dashicons-admin-settings"></span> <?php esc_html_e('Rich text', 'mage-eventpress'); ?>
|
||||
<i class="far fa-newspaper"></i><?php esc_html_e('Rich text', 'mage-eventpress'); ?>
|
||||
</li>
|
||||
<?php do_action('mep_admin_event_details_before_tab_name_rich_text', $post_id); ?>
|
||||
<?php do_action('mp_event_all_in_tab_menu'); ?>
|
||||
@ -177,7 +177,7 @@ class MP_Event_All_Info_In_One
|
||||
</select>
|
||||
</label>
|
||||
<p class="event_meta_help_txt">
|
||||
<?php esc_html_e('Select Organizer if you already save the organizer details. Please remember if you select orginizer and not checked the the organizer from the Event Organizer list from the right sidebar, Event Location section if the frontend will be blank.', 'mage-eventpress'); ?>
|
||||
<?php esc_html_e('Select Organizer if you have already saved the organizer details. Please remember that if you select organizer and have not checked the organizer from the Event Organizer list from the right sidebar, the Event Location section of the front end will be blank.', 'mage-eventpress'); ?>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
@ -520,6 +520,7 @@ class MP_Event_All_Info_In_One
|
||||
<td><input type="number" size="2" pattern="[0-9]*" class="mp_formControl" name="option_default_qty_t[]" placeholder="Ex: 1" value="" /></td>
|
||||
<?php $option_rsv_t = '<td><input type="number" class="mp_formControl" name="option_rsv_t[]" placeholder="Ex: 5" value=""/></td>'; ?>
|
||||
<?php echo apply_filters('mep_add_field_to_ticket_type', mep_esc_html($option_rsv_t)); ?>
|
||||
<?php do_action('mep_add_extra_column_empty'); ?>
|
||||
<td>
|
||||
<div class="sell_expire_date">
|
||||
<input type="date" id="ticket_sale_start_date" value='' name="option_sale_end_date[]" />
|
||||
@ -538,14 +539,14 @@ class MP_Event_All_Info_In_One
|
||||
</select>
|
||||
</td>
|
||||
<td>
|
||||
<button class="button remove-row-t" type="button"><span class="dashicons dashicons-trash" style="margin-top: 3px;color: red;"></span></button>
|
||||
<button class="button remove-row-t" type="button"><i class="fas fa-trash"></i></button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p>
|
||||
<button id="add-row-t" class="button" style="background:green; color:white;"><span class="dashicons dashicons-plus-alt" style="margin-top: 3px;color: white;"></span><?php esc_html_e('Add New Ticket Type', 'mage-eventpress'); ?></button>
|
||||
<button id="add-row-t" class="button"><i class="fas fa-plus-circle"></i> <?php esc_html_e('Add New Ticket Type', 'mage-eventpress'); ?></button>
|
||||
</p>
|
||||
|
||||
<?php
|
||||
@ -604,8 +605,8 @@ class MP_Event_All_Info_In_One
|
||||
</td>
|
||||
<td>
|
||||
<div class="mp_event_remove_move">
|
||||
<button class="button remove-row" type="button"><span class="dashicons dashicons-trash" style="margin-top: 3px;color: red;"></span></button>
|
||||
<div class="mp_event_type_sortable_button"><span class="dashicons dashicons-move"></span></div>
|
||||
<button class="button remove-row" type="button"><i class="fas fa-trash"></i></button>
|
||||
<div class="mp_event_type_sortable_button"><i class="fas fa-grip-vertical"></i></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@ -627,14 +628,14 @@ class MP_Event_All_Info_In_One
|
||||
<option value="dropdown"><?php esc_html_e('Dropdown List', 'mage-eventpress'); ?></option>
|
||||
</select></td>
|
||||
<td>
|
||||
<button class="button remove-row"><span class="dashicons dashicons-trash" style="margin-top: 3px;color: red;"></span><?php esc_html_e('Remove', 'mage-eventpress'); ?></button>
|
||||
<button class="button remove-row"><i class="fas fa-trash"></i></button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p>
|
||||
<button id="add-row" class="button" style="background:green; color:white;"><span class="dashicons dashicons-plus-alt" style="margin-top: 3px;color: white;"></span><?php esc_html_e('Add Extra Price', 'mage-eventpress'); ?></button>
|
||||
<button id="add-row" class="button"><i class="fas fa-plus-circle"></i> <?php esc_html_e('Add Extra Price', 'mage-eventpress'); ?></button>
|
||||
</p>
|
||||
<?php
|
||||
}
|
||||
@ -714,8 +715,8 @@ class MP_Event_All_Info_In_One
|
||||
|
||||
<td>
|
||||
<div class="mp_event_remove_move">
|
||||
<button class="button remove-row-d" type="button"><span class="dashicons dashicons-trash" style="margin-top: 3px;color: red;"></span></button>
|
||||
<div class="mp_event_type_sortable_button"><span class="dashicons dashicons-move"></span></div>
|
||||
<button class="button remove-row-d" type="button"><i class="fas fa-trash"></i></button>
|
||||
<div class="mp_event_type_sortable_button"><i class="fas fa-grip-vertical"></i></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@ -740,13 +741,13 @@ class MP_Event_All_Info_In_One
|
||||
</td>
|
||||
<?php do_action('mep_date_table_empty', $post_id); ?>
|
||||
<td>
|
||||
<button class="button remove-row-d"><span class="dashicons dashicons-trash" style="margin-top: 3px;color: red;"></span><?php esc_html_e('Remove', 'mage-eventpress'); ?></button>
|
||||
<button class="button remove-row-d"><i class="fas fa-trash"></i></button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<button id="add-new-date-row" class="button" style="background:green; color:white;"><span class="dashicons dashicons-plus-alt" style="margin-top: 3px;color: white;"></span><?php esc_html_e('Add More Dates', 'mage-eventpress'); ?></button>
|
||||
<button id="add-new-date-row" class="button"><i class="fas fa-plus-circle"></i> <?php esc_html_e('Add More Dates', 'mage-eventpress'); ?></button>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
@ -2300,7 +2300,7 @@ if (!function_exists('mep_get_term_as_class')) {
|
||||
|
||||
if (!function_exists('mep_ticket_type_sold')) {
|
||||
function mep_ticket_type_sold($event_id, $type = '', $date = '') {
|
||||
|
||||
$type = !empty($type) ? html_entity_decode($type) : '';
|
||||
$type_filter = !empty($type) ? array(
|
||||
'key' => 'ea_ticket_type',
|
||||
'value' => $type,
|
||||
@ -2353,6 +2353,7 @@ if (!function_exists('mep_ticket_type_sold')) {
|
||||
|
||||
if (!function_exists('mep_extra_service_sold')) {
|
||||
function mep_extra_service_sold($event_id, $type, $date) {
|
||||
$type = !empty($type) ? html_entity_decode($type) : '';
|
||||
$args = array(
|
||||
'post_type' => 'mep_extra_service',
|
||||
'posts_per_page' => -1,
|
||||
@ -2693,8 +2694,11 @@ if (!function_exists('mep_wc_link_product_on_save')) {
|
||||
$product_type = mep_get_option('mep_event_product_type', 'general_setting_sec', 'yes');
|
||||
|
||||
$_tax_status = isset($_POST['_tax_status']) ? sanitize_text_field($_POST['_tax_status']) : 'none';
|
||||
$_tax_class = isset($_POST['_tax_class']) ? sanitize_text_field($_POST['_tax_class']) : '';
|
||||
|
||||
$_tax_class = isset($_POST['_tax_class']) ? sanitize_text_field($_POST['_tax_class']) : '';
|
||||
$sku = isset($_POST['mep_event_sku']) ? sanitize_text_field($_POST['mep_event_sku']) : $product_id;
|
||||
|
||||
update_post_meta($product_id, '_sku', $sku);
|
||||
|
||||
$update__tax_status = update_post_meta($product_id, '_tax_status', $_tax_status);
|
||||
$update__tax_class = update_post_meta($product_id, '_tax_class', $_tax_class);
|
||||
$update__tax_class = update_post_meta($product_id, '_stock_status', 'instock');
|
||||
@ -3133,7 +3137,7 @@ if (!function_exists('mep_custom_css_settings_reg')) {
|
||||
$sections = array(
|
||||
array(
|
||||
'id' => 'mep_settings_custom_css',
|
||||
'title' => __('Custom CSS', 'mage-eventpress')
|
||||
'title' => '<i class="fa fa-file-code"></i>'.__('Custom CSS', 'mage-eventpress')
|
||||
),
|
||||
array(
|
||||
'id' => 'mep_settings_licensing',
|
||||
@ -3151,7 +3155,7 @@ if (!function_exists('mep_custom_css_sectings_fields')) {
|
||||
array(
|
||||
'name' => 'mep_custom_css',
|
||||
'label' => __('Custom CSS', 'mage-eventpress'),
|
||||
'desc' => __('Write Your Custom CSS Code Here', 'mage-eventpress'),
|
||||
'desc' => __('Write Your Custom CSS Code Here. Please do not add STYLE tag here.', 'mage-eventpress'),
|
||||
'type' => 'textarea',
|
||||
|
||||
)
|
||||
@ -4786,4 +4790,20 @@ if (!function_exists('mep_flash_permalink_once')) {
|
||||
|
||||
}
|
||||
}
|
||||
add_action('admin_init', 'mep_flash_permalink_once');
|
||||
add_action('admin_init', 'mep_flash_permalink_once');
|
||||
|
||||
/******************************************
|
||||
* Function: Get User Display Name By Email
|
||||
* Developer: Ariful
|
||||
******************************************/
|
||||
function mep_get_user_display_name_by_email($email = null){
|
||||
if( empty($email) ){
|
||||
return false;
|
||||
}
|
||||
else{
|
||||
$user_obj = get_user_by('email', $email);
|
||||
$display_name = $user_obj->display_name;
|
||||
|
||||
return $display_name;
|
||||
}
|
||||
}
|
@ -17,28 +17,11 @@ $wc_i = mep_woo_install_check();
|
||||
$from_name = mep_get_option( 'mep_email_form_name', 'email_setting_sec', '');
|
||||
$from_email = mep_get_option( 'mep_email_form_email', 'email_setting_sec', '');
|
||||
?>
|
||||
<style>
|
||||
.mep_success{
|
||||
color:green;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mep_warning{
|
||||
color:#e6b14e;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mep_error{
|
||||
color:red;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- Create a header in the default WordPress 'wrap' container -->
|
||||
<div class="wrap">
|
||||
<?php do_action('mep_event_status_notice_sec'); ?>
|
||||
<div class="wrap"></div>
|
||||
<?php do_action('mep_event_status_notice_sec'); ?>
|
||||
<div class="wc_status_table_wrapper">
|
||||
<table class="wc_status_table widefat" cellspacing="0" id="status">
|
||||
<thead>
|
||||
<tr>
|
||||
@ -77,6 +60,6 @@ $from_email = mep_get_option( 'mep_email_form_email', 'email_setting_sec', '');
|
||||
do_action('mep_event_status_table_item_sec'); ?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
@ -32,6 +32,7 @@ if (!function_exists('mep_event_ticket_type_loop_list_html')) {
|
||||
$ticket_type_price = array_key_exists('option_price_t',$field) ? $field['option_price_t'] : 0;
|
||||
$qty_t_type = $ticket_type;
|
||||
$total_quantity = isset($field['option_qty_t']) ? $field['option_qty_t'] : 0;
|
||||
$sale_start_datetime = apply_filters('mep_sale_start_datetime',date('Y-m-d H:i',strtotime(get_the_date('Y-m-d H:i:s',$post_id))),$post_id, $field);
|
||||
$sale_end_datetime = isset($field['option_sale_end_date_t']) ? date('Y-m-d H:i',strtotime($field['option_sale_end_date_t'])) : date('Y-m-d H:i',strtotime($event_expire_date));
|
||||
$default_qty = isset($field['option_default_qty_t']) && $field['option_default_qty_t'] > 0 ? $field['option_default_qty_t'] : 0;
|
||||
$total_resv_quantity = isset($field['option_rsv_t']) ? $field['option_rsv_t'] : 0;
|
||||
@ -50,7 +51,7 @@ if (!function_exists('mep_event_ticket_type_loop_list_html')) {
|
||||
$default_path = mep_template_file_path('single/ticket_type_list.php');
|
||||
$ticket_type_file_path = apply_filters('mep_ticket_type_file_path',$default_path,$post_id);
|
||||
|
||||
if (strtotime($current_time) < strtotime( $sale_end_datetime ) ) {
|
||||
if (strtotime($current_time) > strtotime( $sale_start_datetime ) && strtotime($current_time) < strtotime( $sale_end_datetime ) ) {
|
||||
require($ticket_type_file_path);
|
||||
}
|
||||
|
||||
|
@ -22,15 +22,16 @@ function mep_event_welcome_enqueue_scripts()
|
||||
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');
|
||||
add_submenu_page('edit.php?post_type=mep_events', __('Dummy Import', 'mage-eventpress'), __('<span style="color:green">Dummy Import</span>', 'mage-eventpress'), 'manage_options', 'mep_event_import_page', 'mep_event_import_page');
|
||||
add_submenu_page('edit.php?post_type=mep_events', __('Welcome', 'mage-eventpress'), __('<span style="color:#10dd10">Welcome</span>', 'mage-eventpress'), 'manage_options', 'mep_event_welcome_page', 'mep_event_welcome_page');
|
||||
add_submenu_page('edit.php?post_type=mep_events', __('Dummy Import', 'mage-eventpress'), __('<span style="color:#10dd10">Dummy Import</span>', 'mage-eventpress'), 'manage_options', 'mep_event_import_page', 'mep_event_import_page');
|
||||
}
|
||||
function mep_event_welcome_page()
|
||||
{
|
||||
|
||||
?>
|
||||
<!-- Create a header in the default WordPress 'wrap' container -->
|
||||
<div class="wrap">
|
||||
<div class="wrap"></div><!-- /.wrap -->
|
||||
<div class="mep_welcome_page_wrapper">
|
||||
<?php
|
||||
$active_tab = 'welcome';
|
||||
if (isset($_GET['tab'])) {
|
||||
@ -40,8 +41,8 @@ function mep_event_welcome_page()
|
||||
|
||||
<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 esc_html($active_tab) == 'welcome' ? 'nav-tab-active' : ''; ?>">Welcome</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_import_page" class="nav-tab <?php echo esc_html($active_tab) == 'kwb' ? 'nav-tab-active' : ''; ?>">Import</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=kwb" class="nav-tab <?php echo esc_html($active_tab) == 'kwb' ? 'nav-tab-active' : ''; ?>">Support & Knowladgebase</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_import_page&tab=import" class="nav-tab <?php echo esc_html($active_tab) == 'import' ? 'nav-tab-active' : ''; ?>">Import</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=kwb" class="nav-tab <?php echo esc_html($active_tab) == 'kwb' ? 'nav-tab-active' : ''; ?>">Support & Knowledgebase</a>
|
||||
</h2>
|
||||
|
||||
<div class="tab-content">
|
||||
@ -58,7 +59,13 @@ function mep_event_welcome_page()
|
||||
require_once(dirname(__DIR__) . "/inc/welcome/support.php");
|
||||
echo '</div>';
|
||||
break;
|
||||
|
||||
|
||||
case 'import':
|
||||
echo '<div class="mage-event-welcome">';
|
||||
require_once(dirname(__DIR__) . "/inc/welcome/import.php");
|
||||
echo '</div>';
|
||||
break;
|
||||
|
||||
default:
|
||||
echo '<div class="mage-event-welcome">';
|
||||
require_once(dirname(__DIR__) . "/inc/welcome/welcome.php");
|
||||
@ -67,14 +74,14 @@ function mep_event_welcome_page()
|
||||
|
||||
endswitch; ?>
|
||||
</div>
|
||||
|
||||
</div><!-- /.wrap -->
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
|
||||
function mep_event_import_page(){
|
||||
?>
|
||||
<div class="wrap">
|
||||
<div class="wrap"></div><!-- /.wrap -->
|
||||
<div class="mep_welcome_page_wrapper">
|
||||
<?php
|
||||
$active_tab = 'welcome';
|
||||
if (isset($_GET['tab'])) {
|
||||
@ -83,19 +90,17 @@ function mep_event_import_page(){
|
||||
?>
|
||||
<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">Welcome</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_import_page" class="nav-tab nav-tab-active">Import</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=kwb" class="nav-tab">Support & Knowladgebase</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_import_page&tab=import" class="nav-tab nav-tab-active">Import</a>
|
||||
<a href="edit.php?post_type=mep_events&page=mep_event_welcome_page&tab=kwb" class="nav-tab">Support & Knowledgebase</a>
|
||||
</h2>
|
||||
|
||||
<div class="tab-content">
|
||||
<?php
|
||||
echo '<div class="mage-event-welcome">';
|
||||
require_once(dirname(__DIR__) . "/inc/welcome/import.php");
|
||||
echo '</div>';
|
||||
|
||||
echo '<div class="mage-event-welcome">';
|
||||
require_once(dirname(__DIR__) . "/inc/welcome/import.php");
|
||||
echo '</div>';
|
||||
?>
|
||||
</div>
|
||||
|
||||
</div><!-- /.wrap -->
|
||||
</div>
|
||||
<?php
|
||||
}
|
@ -1,5 +1,12 @@
|
||||
header,section,footer{position: relative;}
|
||||
header,
|
||||
section,
|
||||
footer {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
|
||||
/************/
|
||||
|
||||
header[class^='mageStyle'] {
|
||||
background: var(--header-bg);
|
||||
color: var(--header-color);
|
||||
@ -8,31 +15,55 @@ header[class^='mageStyle'] {
|
||||
-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*='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);}
|
||||
/****************/
|
||||
|
||||
[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);
|
||||
}
|
||||
|
||||
|
||||
/****************/
|
@ -1,21 +1,40 @@
|
||||
.shadow_one{
|
||||
.shadow_one {
|
||||
-webkit-box-shadow: 0 8px 15px #f0f0f0;
|
||||
box-shadow: 0 8px 15px #f0f0f0;
|
||||
}
|
||||
.shadow_two{
|
||||
|
||||
.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;}
|
||||
|
||||
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;
|
||||
width: 350px;
|
||||
float: right;
|
||||
-webkit-transform: rotate(40deg);
|
||||
-moz-transform: rotate(40deg);
|
||||
-ms-transform: rotate(40deg);
|
||||
@ -28,27 +47,70 @@ p.textColor{color: #3f3f3f;}
|
||||
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;}
|
||||
|
||||
.top_icon_area ul {
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
|
||||
/****/
|
||||
[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'] section h1 {
|
||||
margin: 0 0 50px 0;
|
||||
}
|
||||
[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;}
|
||||
|
||||
[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;
|
||||
@ -58,33 +120,86 @@ p.textColor{color: #3f3f3f;}
|
||||
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;}
|
||||
.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'] .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{
|
||||
|
||||
[class^='mageStyle'] .widgetButton {
|
||||
padding: 0;
|
||||
color: #fff;
|
||||
display: -webkit-inline-flex;display: inline-flex;
|
||||
display: -webkit-inline-flex;
|
||||
display: inline-flex;
|
||||
font-size: 22px;
|
||||
background-color: #6c57c1;
|
||||
cursor: pointer;
|
||||
@ -97,20 +212,39 @@ p.textColor{color: #3f3f3f;}
|
||||
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);
|
||||
[class^='mageStyle'] .widgetButton:hover,
|
||||
[class^='mageStyle'] .widgetButton:focus {
|
||||
text-decoration: none;
|
||||
opacity: 0.9;
|
||||
background-color: #4aac57;
|
||||
}
|
||||
|
||||
.withOurWork .withWork{padding: 15px;border: 1px solid #815efb;}
|
||||
[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);
|
||||
}
|
||||
|
||||
.features,.preset,.widget,.tutorial,.knowledge,.unlimited_section,.faqContent,.missing_feature,.withOurWork{padding: 60px 0;}
|
||||
.withOurWork .withWork {
|
||||
padding: 15px;
|
||||
border: 1px solid #815efb;
|
||||
}
|
||||
|
||||
[class^='mageStyle'] .knowledge a[class*='customButton']{margin: 30px 0 20px 0;}
|
||||
.features,
|
||||
.preset,
|
||||
.widget,
|
||||
.tutorial,
|
||||
.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 {
|
||||
@ -121,111 +255,318 @@ p.textColor{color: #3f3f3f;}
|
||||
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;}
|
||||
.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;}
|
||||
.features,
|
||||
.preset,
|
||||
.widget,
|
||||
.tutorial,
|
||||
.knowledge,
|
||||
.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;}
|
||||
.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;}
|
||||
.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;}
|
||||
.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;
|
||||
}
|
||||
}
|
@ -1,80 +1,234 @@
|
||||
[class^='mageStyle'] [class*='mage_container'] {max-width: var(--container-max-width);width: 95%;margin: 0 auto;}
|
||||
[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*='mage_row'] {
|
||||
min-height: 1px;
|
||||
}
|
||||
|
||||
[class^='mageStyle'] [class*='fullWidth'] {width: 100%;max-width: 100%;}
|
||||
[class^='mageStyle'] [class*='fullHeight'] {height: 100%;}
|
||||
[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: 32.99%;
|
||||
}
|
||||
|
||||
[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%;
|
||||
}
|
||||
|
||||
[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%;}
|
||||
[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%;}
|
||||
[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%;}
|
||||
[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%;}
|
||||
[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%;
|
||||
}
|
||||
}
|
@ -1,14 +1,11 @@
|
||||
@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";
|
||||
@ -17,103 +14,373 @@
|
||||
@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;
|
||||
border-radius: 0;
|
||||
margin: 1px;
|
||||
}
|
||||
|
||||
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;
|
||||
background: #0080F0;
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
margin-left: 0;
|
||||
font-size: 16px;
|
||||
padding: 10px 20px;
|
||||
color: #fff;
|
||||
margin: 1px;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
h2.nav-tab-wrapper.mage-event-welcome-tab a.nav-tab.nav-tab-active {
|
||||
background: #fff;
|
||||
color: #000;
|
||||
}
|
||||
header.mageStyle h2, header.mageStyle h3 {
|
||||
|
||||
header.mageStyle h2,
|
||||
header.mageStyle h3 {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
header.mageStyle {
|
||||
padding: 0;
|
||||
margin-bottom: -6px;
|
||||
}
|
||||
.addon_list_sec .mep_addon_list li img{
|
||||
|
||||
.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;
|
||||
display: inline-block!important;
|
||||
float: left;
|
||||
margin: 10px!important;
|
||||
min-height: 460px;
|
||||
padding: 0px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
width: 31.2%!important;
|
||||
box-shadow: 3px 4px 5px #d9e1e7;
|
||||
background: #fff;
|
||||
overflow: hidden;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.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;
|
||||
display: block;
|
||||
background: #0000b5;
|
||||
color: #fff;
|
||||
width: max-content;
|
||||
margin: 0 auto;
|
||||
padding: 8px 12px;
|
||||
text-decoration: none;
|
||||
font-size: 15px;
|
||||
border-radius: 3px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.addon_list_sec .mep_addon_list li h3 {
|
||||
margin-top: 10px;
|
||||
margin-top: 10px;
|
||||
padding: 5px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.addon_list_sec .mep_addon_list li p {
|
||||
padding: 0 15px;
|
||||
font-size: 12px;
|
||||
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;
|
||||
color: #ED3237;
|
||||
font-size: 16px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] h3.mep_welcome_title {
|
||||
font-size: 25px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.mep_welcome_page_wrapper p {
|
||||
font-size: 14px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mep_welcome_btns_wrapper {
|
||||
margin-top: 20px
|
||||
}
|
||||
|
||||
[class^="mageStyle"] a.mep_welcome_btn {
|
||||
border: 0;
|
||||
padding: .375rem .75rem;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] img.mep_welcome_pro_img {
|
||||
width: 300px;
|
||||
margin: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mep_bn_btn {
|
||||
background-color: #0E092C;
|
||||
}
|
||||
|
||||
.mep_vd_btn {
|
||||
background-color: #042647;
|
||||
}
|
||||
|
||||
.mep_doc_btn {
|
||||
background-color: #430447;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_features_wrapper {
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
.mep_welcome_divider {
|
||||
border-bottom: 2px solid;
|
||||
width: 150px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] .mep_welcome_pro_feature {
|
||||
display: -webkit-box;
|
||||
/* OLD - iOS 6-, Safari 3.1-6 */
|
||||
display: -moz-box;
|
||||
/* OLD - Firefox 19- (buggy but mostly works) */
|
||||
display: -ms-flexbox;
|
||||
/* TWEENER - IE 10 */
|
||||
display: -webkit-flex;
|
||||
/* NEW - Chrome */
|
||||
display: flex;
|
||||
/* NEW, Spec - Opera 12.1, Firefox 20+ */
|
||||
}
|
||||
|
||||
.mep_welcome_pro_feature_icon,
|
||||
.mep_welcome_pro_feature_title {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_feature_title h4 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_feature_icon {
|
||||
background: #828282;
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
min-width: 40px;
|
||||
max-width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_feature {
|
||||
background: #f4f4dc;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_features_heading {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] .mep_welcome_pro_features_wrapper [class*="col_4"] {
|
||||
display: inline-block;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.widget .mep_welcome_pro_addons_heading h3 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_addons_wrapper .mep_welcome_divider {
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.mep-color-l-r {
|
||||
color: #ED3237;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_addons {
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.getPro .mep_welcome_dflex {
|
||||
display: flex;
|
||||
text-align: left;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.getPro h2 {
|
||||
text-align: left;
|
||||
font-size: 20px;
|
||||
padding: 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.getPro {
|
||||
background: #313131;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] .getPro [class*="customButton"] {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] div.mep_import_dflex {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
text-align: left;
|
||||
align-items: flex-start;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
.unlimited_section .mep_import_dflex .textContent h4 {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] span.mep_import_step {
|
||||
color: #fff;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
display: table-cell;
|
||||
font-size: 16px;
|
||||
text-transform: uppercase;
|
||||
font-weight: 400;
|
||||
background-image: linear-gradient(180deg, #00e31d, #00c0ce);
|
||||
box-shadow: 0 15px 30px 0 rgba(0, 101, 6, .08);
|
||||
}
|
||||
|
||||
.mep_download_btn {
|
||||
display: block;
|
||||
width: max-content;
|
||||
background: #007cf5;
|
||||
border-radius: 3px;
|
||||
color: #fff !important;
|
||||
padding: 10px 15px;
|
||||
transition: 0.2s;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.mep_demo_btn {
|
||||
display: block;
|
||||
width: max-content;
|
||||
background: #007cf5;
|
||||
border-radius: 3px;
|
||||
color: #fff !important;
|
||||
padding: 10px 15px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.mep_import_step_wrapper {
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] table.mep_shortcode_table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] table.mep_shortcode_table th,
|
||||
[class^="mageStyle"] table.mep_shortcode_table td {
|
||||
padding: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] table.mep_shortcode_table thead {
|
||||
background-color: #f1f9ff;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] table.mep_shortcode_table th:last-child {
|
||||
width: 15%;
|
||||
}
|
||||
|
||||
[class^="mageStyle"] table.mep_shortcode_table p {
|
||||
color: #273b5e;
|
||||
}
|
||||
|
||||
.mep_shortcode_table code {
|
||||
background-color: #e3e3e3;
|
||||
padding: 5px;
|
||||
font-weight: 400;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.mep_shortcode_table_wrapper {
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
margin-top: 50px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.mep_shortcode_wrapper {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.mep_welcome_pro_badge {
|
||||
background: #ee1515;
|
||||
color: #fff;
|
||||
padding: 5px 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.pb-0 {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
#mep_welcome_accordion {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 600px) {
|
||||
.mep_welcome_page_wrapper {
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
[class^="mageStyle"] div.mep_import_dflex .content_area {
|
||||
width: 33%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.mep_welcome_page_wrapper {
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
[class^="mageStyle"] div.mep_import_dflex .content_area {
|
||||
width: 100%;
|
||||
}
|
||||
[class^="mageStyle"] table.mep_shortcode_table {
|
||||
width: max-content;
|
||||
}
|
||||
}
|
@ -1,93 +1,56 @@
|
||||
<!--<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>Import Dummy Events</h3>-->
|
||||
<!-- <h2 class="extraBold">Event Manager For Woocommerce</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="unlimited_section">
|
||||
<div class="mage_container">
|
||||
<div class="mage_row">
|
||||
<div class="col_6 sd_12 alignCenter">
|
||||
<div class="col_12 sd_12 alignCenter">
|
||||
<div>
|
||||
<h2>Download Dummy Event</h2>
|
||||
<p>Please follow the below process to import dummy event data to your website.</p>
|
||||
<div>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
<div class="mep_import_dflex mep_import_step_wrapper">
|
||||
<div class="alignCenter content_area nowrap">
|
||||
<img src="<?php echo plugin_dir_url(__DIR__) . 'welcome/' ?>img/icon_1.png" alt="icon" />
|
||||
<div class="textContent">
|
||||
<span class="mep_import_step">Step 1</span>
|
||||
<h4>Download Dummy XML File</h4>
|
||||
<p>Please downlaod this <a href="https://vaincode.com/update/sample-events.zip" target="_blank">Dummy Events XML File</a></p>
|
||||
<p>Please downlaod the XML file.
|
||||
<a href="https://vaincode.com/update/sample-events.zip" target="_blank" class="mep_download_btn"><i class="fas fa-download"></i> Dummy Events XML File</a>
|
||||
</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">
|
||||
<span class="mep_import_step">Step 2</span>
|
||||
<h4>Import File </h4>
|
||||
<p>After Download the XML file, <br />
|
||||
Go to: </br /></br />
|
||||
<b>Tools -> Import </b>
|
||||
<br /></br />
|
||||
In the bottom of this page there is a WordPress import option. If you have already enabled this you can see Run Import, if not click on the Install Now link. After that click on Run Importer and select the XML file you downlaod earlier.</p>
|
||||
<p>After Downloading the XML file, go to <strong>Tools -> Import</strong>.
|
||||
At the bottom of this page, there is a WordPress import option. If you have already enabled this you can see <strong>Run Import</strong>, if not click on the <strong>Install Now</strong> link. After that click on <strong>Run Importer</strong> and select the XML file you downloaded earlier.
|
||||
</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">
|
||||
<span class="mep_import_step">Step 3</span>
|
||||
<h4>Finish Import Process</h4>
|
||||
<p>Now select the user of your website to assign the new events from the dropdown, and tick on the Download Attachemnt tick box & Run the Process. After a few minute you will see the Success message. All Done! Have Fun.</p>
|
||||
<p>Now select the user of your website to assign the new events from the dropdown, tick on the Download Attachment checkbox, and Run the Process. After a few minutes, you will see the success message. All Done! Have Fun.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<a href="https://vaincode.com/update/sample-events.zip" target="_blank" class="buttonOutline allCenter_radius_transition customButton">Download Dummy Events XML File</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="widget mep_welcome_pro_addons_wrapper">
|
||||
<div class="mage_container">
|
||||
<div class="mage_row">
|
||||
<div class="col_12">
|
||||
<div class="justifyCenter">
|
||||
<span class="preDash postDash customButton allCenter">Watch The Video Toutorial</span>
|
||||
|
||||
<div class="mep_welcome_pro_addons_heading">
|
||||
<h3 class="textCenter">Watch The Video <span class="mep-color-l-r">Tutorial</span></h3>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
</div>
|
||||
|
||||
<div class="justifyBetween">
|
||||
<iframe style="width: 100%;height:600px" src="https://www.youtube.com/embed/9N907w_HxyU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
<iframe style="width: 100%;height:600px;margin-top:50px" src="https://www.youtube.com/embed/9N907w_HxyU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -96,8 +59,8 @@
|
||||
<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="col_12 mep_welcome_dflex">
|
||||
<h2>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>
|
||||
@ -105,9 +68,4 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<style>
|
||||
.widget h3 {
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
</section>
|
@ -1,165 +1,335 @@
|
||||
<!--<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_container">
|
||||
<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 class="mep_shortcode_wrapper">
|
||||
<h2>All Shortcode list</h2>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
<div class="mep_shortcode_table_wrapper">
|
||||
<table class="mep_shortcode_table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Shortcode</th>
|
||||
<th>Parameter Description</th>
|
||||
<th>Demo</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Events – List Style</td>
|
||||
<td><code>[event-list show='2' pagination='yes']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>pagination</code> <strong>yes</strong> or <strong>no</strong> or <strong>carousal</strong> | Default: <strong>no</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-list-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – List Style with Search Box</td>
|
||||
<td><code>[event-list column=4 search-filter='yes']</code></td>
|
||||
<td>
|
||||
<p><code>column</code> <strong>3</strong> or <strong>4</strong> (integer number only) | Default: <strong>3</strong><div></div></p>
|
||||
<p><code>search-filter</code> <strong>yes</strong> or <strong>no</strong> | Default: <strong>no</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-list-style-with-search-box/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Grid Style</td>
|
||||
<td><code>[event-list show='3' style='grid']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-grid-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Minimal Style</td>
|
||||
<td><code>[event-list show='2' style='minimal']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-minimal-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Winter Style</td>
|
||||
<td><code>[event-list show='2' style='winter']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-winter-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Native Style</td>
|
||||
<td><code>[event-list show='2' style='native']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-native-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Vertical Timeline Style</td>
|
||||
<td><code>[event-list show='5' style='timeline' timeline-mode='vertical']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>timeline-mode</code> <strong>vertical</strong> or <strong>horizontal</strong> | Default: <strong>vertical</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-vertical-timeline-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Horizontal Timeline Style</td>
|
||||
<td><code>[event-list show='5' style='timeline' timeline-mode='horizontal']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>timeline-mode</code> <strong>vertical</strong> or <strong>horizontal</strong> | Default: <strong>vertical</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-horizontal-timeline-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events list with search filter</td>
|
||||
<td><code>[event-list show='8' style='grid' column='3' search-filter='yes']</code></td>
|
||||
<td>
|
||||
<p><code>show</code> Number of events show (integer number only) | Default: <strong>-1</strong> to show all</p>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>column</code> <strong>2</strong> to <strong>6</strong> | Default: <strong>3</strong> | Applicable for grid style only</p>
|
||||
<p><code>search-filter</code> <strong>yes</strong> or <strong>no</strong> | Default: <strong>no</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-list-with-search-filter/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Title Style</td>
|
||||
<td><code>[event-list style='title']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-title-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Carousel Style</td>
|
||||
<td><code>[event-list style='grid' pagination='carousal' carousal-dots='yes' carousal-nav='yes' column=3]</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>pagination</code> <strong>yes</strong> or <strong>no </strong> or <strong>carousal </strong> | Default: <strong>no</strong> </p>
|
||||
<p><code>carousal-dots</code><strong>yes</strong> or <strong>no </strong> | Default: <strong>no</strong> </p>
|
||||
<p><code>carousal-nav</code><strong>yes</strong> or <strong>no </strong> | Default: <strong>no</strong></p>
|
||||
<p><code>column</code><strong>1</strong> to <strong>4 </strong> | Default: <strong>3</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-carousel-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events – Spring Style</td>
|
||||
<td><code>[event-list style='spring']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-spring-style/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Event Speakers</td>
|
||||
<td><code>[event-speaker-list event=14829]</code></td>
|
||||
<td>
|
||||
<p><code>event</code> event <strong>ID</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/speakers/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Recurring Events</td>
|
||||
<td><code>[event-list-recurring column='3']</code></td>
|
||||
<td>
|
||||
<p><code>column</code> <strong>3</strong> or <strong>4</strong> (integer number only) | Default: <strong>3</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/recurring-events/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events City List</td>
|
||||
<td><code>[event-city-list]</code></td>
|
||||
<td></td>
|
||||
<td><a href="https://event.mage-people.com/events-city-list/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events With Pagination</td>
|
||||
<td><code>[event-list style='grid' pagination='yes']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>pagination</code> <strong>yes</strong> or <strong>no</strong> or <strong>carousal</strong> | Default: <strong>no</strong> </p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-with-pagination/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events by Single Organizer</td>
|
||||
<td><code>[event-list style='grid' org='15']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>org</code> organizer ID (integer number only) | Default: <strong>0</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-by-single-organizer/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events Filter by Organization</td>
|
||||
<td><code>[event-list style='grid' org-filter='yes']</code></td>
|
||||
<td>
|
||||
<p><code>style</code> <strong>grid</strong> or <strong>list </strong>or<strong> </strong> <strong>minimal </strong> or <strong>native </strong> or <strong>timeline </strong> or <strong>title </strong> or <strong>spring </strong> or <strong>winter</strong> | Default: <strong>grid</strong> </p>
|
||||
<p><code>org-filter</code> <strong>yes</strong> or <strong>no</strong> | Default: <strong>no</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-filter-by-organization/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events by Single Category</td>
|
||||
<td><code>[event-list cat='44']</code></td>
|
||||
<td>
|
||||
<p><code>cat</code> category ID (integer number only) | Default: <strong>0</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-by-single-category/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events Filter by Category</td>
|
||||
<td><code>[event-list cat-filter='yes']</code></td>
|
||||
<td>
|
||||
<p><code>cat-filter</code> <strong>yes</strong> or <strong>no</strong> | Default: <strong>no</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-filter-by-category/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events by Country</td>
|
||||
<td><code>[event-list country='US']</code></td>
|
||||
<td>
|
||||
<p><code>country</code> country name | Default: <strong>null</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-by-country/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events by City</td>
|
||||
<td><code>[event-list city='Texas']</code></td>
|
||||
<td>
|
||||
<p><code>city</code> city name | Default: <strong>null</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-by-city/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Expired Events</td>
|
||||
<td><code>[expire-event-list]</code></td>
|
||||
<td></td>
|
||||
<td><a href="https://event.mage-people.com/expired-events/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Single Event Registration</td>
|
||||
<td><code>[event-add-cart-section event=10408]</code></td>
|
||||
<td>
|
||||
<p><code>event</code> Event <strong>ID</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/single-event-registration/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events Calendar</td>
|
||||
<td><code>[event-calendar]</code></td>
|
||||
<td></td>
|
||||
<td><a href="https://event.mage-people.com/events-calendar/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Events Calendar Pro <span class="mep_welcome_pro_badge">Addon</span></td>
|
||||
<td>
|
||||
<p><code>[mep-event-calendar]</code></p>
|
||||
<p><code>[mep-event-calendar cat_id='44']</code></p>
|
||||
<p><code>[mep-event-calendar-month month='2028-09']</code></p>
|
||||
</td>
|
||||
<td>
|
||||
<p><code>cat_id</code> Event Category <strong>ID</strong></p>
|
||||
<p><code>month</code> Events year-month | <strong>yyyy-mm</strong></p>
|
||||
</td>
|
||||
<td><a href="https://event.mage-people.com/events-calendar-pro/" target="_blank" class="mep_demo_btn">View Demo</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="faqContent">
|
||||
<div class="widget pb-0">
|
||||
<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>
|
||||
<h2>Frequently Asked Questions</h2>
|
||||
<p>Here is list of question that may help.</p>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
</div>
|
||||
<div class="col_12 shadow_one dFlex mt_40 marB">
|
||||
<div class="col_6 sd_12 pad_25">
|
||||
<div id="mep_welcome_accordion">
|
||||
<h3>Where can I find the Attendee registration Form?</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>How can I see event wise registered attendee list?</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>How can I Export attendee list as CSV?</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>My plugin page shows 404 error?</h3>
|
||||
<div>
|
||||
<p>
|
||||
Please re-save the permalink to solve the problem.
|
||||
</p>
|
||||
|
||||
<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 don’t
|
||||
hesitate to contact us. Email: magepeopleteam@gmail.com.</p>
|
||||
</div>
|
||||
</div>
|
||||
<h3>Where Can I change Event Slug Url?</h3>
|
||||
<div>
|
||||
<p>
|
||||
In Event Settings area we have slug changing option. You can change it and resave permalink to avoid 404 error.
|
||||
</p>
|
||||
</div>
|
||||
<h3>Where Can I configure Pdf Email?</h3>
|
||||
<div>
|
||||
<p>
|
||||
If you visit Event settings page then You will see PDF email tab top right, you can configure pdf email here.
|
||||
</p>
|
||||
</div>
|
||||
<h3>I have configured correctly but pdf email I am not getting.</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>Can I hide any section from event list and details page?</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>How Can I configure Virtual Event?</h3>
|
||||
<div>
|
||||
<p>
|
||||
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>
|
||||
<h3>I installed event manager plugin but it does not work?</h3>
|
||||
<div>
|
||||
<p>
|
||||
Please install WooCommerce plugin first, before installing any plugin.
|
||||
</p>
|
||||
</div>
|
||||
<h3>Do you offer customization?</h3>
|
||||
<div>
|
||||
<p>
|
||||
Yes! we offer customization service for our client. If you want any new features don’t hesitate to contact us. Email: magepeopleteam@gmail.com.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -172,71 +342,32 @@
|
||||
<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">
|
||||
<div class="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>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
<p class="marT"> We are always interested in enhancing 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="getPro">
|
||||
<div class="mage_container">
|
||||
<div class="mage_row">
|
||||
<div class="col_12 mep_welcome_dflex">
|
||||
<h2>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>
|
||||
/* 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>
|
||||
<script>
|
||||
jQuery( function() {
|
||||
jQuery( "#mep_welcome_accordion" ).accordion({heightStyle: "content"});
|
||||
} );
|
||||
</script>
|
@ -1,91 +1,133 @@
|
||||
<!--<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="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>
|
||||
<h3 class="mep_welcome_title">WooCommerce Event Manager</h3>
|
||||
<p>WooCommerce Event Manager Plugin for WordPress is the complete event solution. All major functions are available in this plugin which is needed in an Event booking website.</p>
|
||||
<p>It uses WooCommerce to take payment, which provides freedom for using popular payment getaway via WooCommerce. This plugin supports all WordPress version and can be used to create any types of any types of events.</p>
|
||||
<div class="mep_welcome_btns_wrapper">
|
||||
<a href="https://mage-people.com/product/mage-woo-event-booking-manager-pro/#mage_product_price" class="mep_welcome_btn mep_bn_btn">Buy Now</a>
|
||||
<a href="https://event.mage-people.com/" class="mep_welcome_btn mep_vd_btn">View Demo</a>
|
||||
<a href="https://docs.mage-people.com/woocommerce-event-manager/" class="mep_welcome_btn mep_doc_btn">Documentation</a>
|
||||
</div>
|
||||
<a href="https://mage-people.com/product/mage-woo-event-booking-manager-pro/" target="_blank" class="buttonOutline allCenter_radius_transition customButton">Buy 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" />
|
||||
<img src="<?php echo plugin_dir_url(__DIR__) . 'welcome/' ?>img/ullimited_img.png" alt="unlimited" class="mep_welcome_pro_img"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mage-row">
|
||||
<div class="mep_welcome_pro_features_wrapper">
|
||||
<div class="col_12">
|
||||
<div class="mep_welcome_pro_features_heading">
|
||||
<h3>Pro Features You'll Love</h3>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-tasks"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Attendee Management</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fab fa-wpforms"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Attendee Custom Form</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-file-pdf"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>PDF Ticketing</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="far fa-envelope"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Custom Emailing</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-user-edit"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Attendee Edit Feature</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-file-alt"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Attendee CSV Export</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="far fa-file-alt"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Report Overview</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-palette"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Custom Style Settings</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col_4 sd_12">
|
||||
<div class="mep_welcome_pro_feature">
|
||||
<div class="mep_welcome_pro_feature_icon">
|
||||
<i class="fas fa-language"></i>
|
||||
</div>
|
||||
<div class="mep_welcome_pro_feature_title">
|
||||
<h4>Translation Settings</h4>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="widget">
|
||||
<div class="widget mep_welcome_pro_addons_wrapper">
|
||||
<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 class="mep_welcome_pro_addons_heading">
|
||||
<h3 class="textCenter">WooCommerce Event Manager <span class="mep-color-l-r">Addons</span></h3>
|
||||
<div class="mep_welcome_divider"></div>
|
||||
</div>
|
||||
<h1 class="textCenter">Addons</h1>
|
||||
<div class="justifyBetween">
|
||||
|
||||
<div class="justifyBetween mep_welcome_pro_addons">
|
||||
<?php
|
||||
$url = 'https://vaincode.com/update/addon-list.json';
|
||||
$curl = curl_init();
|
||||
@ -104,7 +146,7 @@
|
||||
<li>
|
||||
<img src="<?php echo esc_url($list['banner']); ?>" alt="">
|
||||
<h3><?php echo esc_html($list['name']); ?></h3>
|
||||
<h4><?php echo esc_html($list['price']); ?></h4>
|
||||
<h4>Prices start at <?php echo esc_html($list['price']); ?></h4>
|
||||
<a href="<?php echo esc_url($list['url']); ?>" target="_blank"><?php echo esc_html($list['btn_txt']); ?></a>
|
||||
</li>
|
||||
<?php } ?>
|
||||
@ -117,20 +159,13 @@
|
||||
</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="col_12 mep_welcome_dflex">
|
||||
<h2>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>
|
||||
</section>
|
2297
js/jquery-ui-timepicker-addon.js
vendored
2297
js/jquery-ui-timepicker-addon.js
vendored
File diff suppressed because it is too large
Load Diff
@ -2940,7 +2940,7 @@ if( ! class_exists( 'FormFieldsGenerator' ) ) {
|
||||
$field_name = isset( $option['field_name'] ) ? $option['field_name'] : $id;
|
||||
$conditions = isset( $option['conditions'] ) ? $option['conditions'] : array();
|
||||
$placeholder = isset( $option['placeholder'] ) ? $option['placeholder'] : "";
|
||||
$remove_text = isset( $option['remove_text'] ) ? $option['remove_text'] : '<i class="fas fa-times"></i>';
|
||||
$remove_text = isset( $option['remove_text'] ) ? $option['remove_text'] : '<i class="fas fa-trash"></i>';
|
||||
$sortable = isset( $option['sortable'] ) ? $option['sortable'] : true;
|
||||
$default = isset( $option['default'] ) ? $option['default'] : array();
|
||||
|
||||
@ -8188,14 +8188,16 @@ if( ! class_exists( 'FormFieldsGenerator' ) ) {
|
||||
jQuery(document).on('click', '.field-repeatable-wrapper-<?php echo esc_attr($id); ?> .add-item', function() {
|
||||
now = jQuery.now();
|
||||
fields_arr = <?php echo json_encode($fields); ?>;
|
||||
html = '<div class="item-wrap collapsible"><div class="header"><span class="button remove" ' +
|
||||
html = '<div class="item-wrap collapsible"><div class="header">';
|
||||
html += '<span class="button title-text"><i class="fas fa-angle-double-down"></i> Expand</span> ';
|
||||
html += '<span class="button remove" ' +
|
||||
'onclick="jQuery(this).parent().parent().remove()"><?php echo mep_esc_html($remove_text); ?></span> ';
|
||||
|
||||
<?php if($sortable):?>
|
||||
html += '<span class="button sort" ><i class="fas fa-arrows-alt"></i></span>';
|
||||
html += '<span class="button sort" ><i class="fas fa-grip-vertical"></i></span>';
|
||||
<?php endif; ?>
|
||||
html += ' <span class="title-text" style="cursor:pointer;display: inline-block;width: 84%;">==> Click to Expand</span></div>';
|
||||
// html += ' <span class="title-text">#'+now+'</span></div>';
|
||||
html += '</div>';
|
||||
// html += ' <span class="title-text">#'+now+'</span></div>';
|
||||
fields_arr.forEach(function(element) {
|
||||
type = element.type;
|
||||
item_id = element.item_id;
|
||||
@ -8446,7 +8448,7 @@ if( ! class_exists( 'FormFieldsGenerator' ) ) {
|
||||
?>
|
||||
</div>
|
||||
<div class="error-mgs"></div>
|
||||
<div class="ppof-button add-item"><i class="fas fa-plus-square"></i> <?php echo esc_html($btntext); ?></div>
|
||||
<div class="ppof-button add-item"><i class="fas fa-plus-circle"></i> <?php echo esc_html($btntext); ?></div>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
99
lib/classes/class-mep-required-plugins.php
Normal file
99
lib/classes/class-mep-required-plugins.php
Normal file
@ -0,0 +1,99 @@
|
||||
<?php
|
||||
/**
|
||||
* Required Plugins Notification
|
||||
* Dev: Ariful
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
if (!class_exists('MEP_Required_Plugins')) {
|
||||
|
||||
class MEP_Required_Plugins
|
||||
{
|
||||
public function __construct() {
|
||||
add_action( 'admin_notices',array($this,'mep_admin_notices'));
|
||||
add_action( 'admin_init', array( $this, 'mep_plugin_activate' ) );
|
||||
}
|
||||
public function mep_chk_plugin_folder_exist($slug){
|
||||
$plugin_dir = ABSPATH . 'wp-content/plugins/'.$slug;
|
||||
if(is_dir($plugin_dir)){
|
||||
return true;
|
||||
}
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function mep_requested_plugin_install(){
|
||||
|
||||
if(isset($_GET['mep_plugin_install']) && $this->mep_chk_plugin_folder_exist($_GET['mep_plugin_install']) == false){
|
||||
$slug = $_GET['mep_plugin_install'];
|
||||
$action = 'install-plugin';
|
||||
$url = wp_nonce_url(
|
||||
add_query_arg(
|
||||
array(
|
||||
'action' => $action,
|
||||
'plugin' => $slug
|
||||
),
|
||||
admin_url( 'update.php' )
|
||||
),
|
||||
$action.'_'.$slug
|
||||
);
|
||||
if(isset($url)){
|
||||
echo '<script>
|
||||
str = "'.$url.'";
|
||||
var url = str.replace(/&/g, "&");
|
||||
window.location.replace(url);
|
||||
</script>';
|
||||
}
|
||||
}
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function mep_plugin_activate(){
|
||||
if(isset($_GET['mep_plugin_activate']) && !is_plugin_active( $_GET['mep_plugin_activate'] )){
|
||||
$slug = $_GET['mep_plugin_activate'];
|
||||
$activate = activate_plugin( $slug );
|
||||
$url = admin_url('plugins.php');
|
||||
echo '<script>
|
||||
var url = "'.$url.'";
|
||||
window.location.replace(url);
|
||||
</script>';
|
||||
}
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public function mep_admin_notices(){
|
||||
$slug = 'woocommerce';
|
||||
$style = 'background: #f8d7da; font-size: 13px; color: #721c24;';
|
||||
if( $this->mep_chk_plugin_folder_exist($slug) == false ){
|
||||
$this->mep_requested_plugin_install($slug);
|
||||
$wc_btn = '<a href="'.admin_url('plugins.php').'?mep_plugin_install='.$slug.'">Install Now</a>';
|
||||
printf(
|
||||
'<div class="error" style="'.$style.'"><p><strong>%s</strong> '.$wc_btn.'</p></div>',
|
||||
__('You must install the WooCommerce plugin before activating Event Manager For WooCommerce. Because it is dependent on the WooCommerce plugin.','mage-eventpress')
|
||||
);
|
||||
}
|
||||
elseif($this->mep_chk_plugin_folder_exist($slug) == true && !is_plugin_active( 'woocommerce/woocommerce.php')){
|
||||
$plugin = 'woocommerce/woocommerce.php';
|
||||
$url = admin_url('plugins.php').'?mep_plugin_activate='.$plugin;
|
||||
$wc_btn = '<a href="'.esc_url($url).'">Active Now</a>';
|
||||
printf(
|
||||
'<div class="error" style="'.$style.'"><p><strong>%s</strong> '.$wc_btn.'</p></div>',
|
||||
__('You must activate the WooCommerce plugin before activating Event Manager For WooCommerce. Because it is dependent on the WooCommerce plugin.','mage-eventpress')
|
||||
);
|
||||
}
|
||||
else{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
new MEP_Required_Plugins();
|
@ -822,4 +822,11 @@ more....
|
||||
Style Issue fixed
|
||||
Bug Fixed
|
||||
more....
|
||||
17 Feb 2022*
|
||||
17 Feb 2022*
|
||||
|
||||
|
||||
= 3.6.1=
|
||||
* Update Release:
|
||||
Style Issue fixed
|
||||
New Hook added
|
||||
05 April 2022*
|
||||
|
@ -3,7 +3,7 @@
|
||||
* Plugin Name: Event Manager and Tickets Selling Plugin for WooCommerce
|
||||
* Plugin URI: http://mage-people.com
|
||||
* Description: A Complete Event Solution for WordPress by MagePeople..
|
||||
* Version: 3.6.0
|
||||
* Version: 3.6.1
|
||||
* Author: MagePeople Team
|
||||
* Author URI: http://www.mage-people.com/
|
||||
* Text Domain: mage-eventpress
|
||||
@ -35,14 +35,56 @@ if (is_plugin_active('woocommerce/woocommerce.php')) {
|
||||
}
|
||||
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()
|
||||
{
|
||||
$class = 'notice notice-error';
|
||||
printf(
|
||||
'<div class="error" style="background:red; color:#fff;"><p>%s</p></div>',
|
||||
__('You Must Install WooCommerce Plugin before activating Event Manager For Woocommerce , Becuase It is dependent on Woocommerce Plugin')
|
||||
);
|
||||
|
||||
// Get Plugin Data
|
||||
if(!function_exists('mep_get_plugin_data')) {
|
||||
function mep_get_plugin_data($data) {
|
||||
$get_mep_plugin_data = get_plugin_data( __FILE__ );
|
||||
$mep_data = $get_mep_plugin_data[$data];
|
||||
return $mep_data;
|
||||
}
|
||||
}
|
||||
|
||||
// Added Settings link to plugin action links
|
||||
add_filter( 'plugin_action_links', 'mep_plugin_action_link', 10, 2 );
|
||||
|
||||
function mep_plugin_action_link( $links_array, $plugin_file_name ){
|
||||
|
||||
if( strpos( $plugin_file_name, basename(__FILE__) ) ) {
|
||||
|
||||
array_unshift( $links_array, '<a href="'.esc_url(admin_url()).'edit.php?post_type=mep_events&page=mep_event_settings_page">'.__('Settings','mage-eventpress').'</a>');
|
||||
}
|
||||
|
||||
return $links_array;
|
||||
}
|
||||
add_action('admin_notices', 'mep_admin_notice_wc_not_active');
|
||||
|
||||
// Added links to plugin row meta
|
||||
add_filter( 'plugin_row_meta', 'mep_plugin_row_meta', 10, 2 );
|
||||
|
||||
function mep_plugin_row_meta( $links_array, $plugin_file_name ) {
|
||||
|
||||
if( strpos( $plugin_file_name, basename(__FILE__) ) ) {
|
||||
|
||||
if(!is_plugin_active('woocommerce-event-manager-pdf-ticket/tickets.php') || !is_plugin_active('woocommerce-event-manager-addon-form-builder/addon-builder.php')){
|
||||
$wbbm_links = array(
|
||||
'docs' => '<a href="'.esc_url("https://docs.mage-people.com/woocommerce-event-manager/").'" target="_blank">'.__('Docs','mage-eventpress').'</a>',
|
||||
'support' => '<a href="'.esc_url("https://mage-people.com/my-account").'" target="_blank">'.__('Support','mage-eventpress').'</a>',
|
||||
'get_pro' => '<a href="'.esc_url("https://mage-people.com/product/mage-woo-event-booking-manager-pro/").'" target="_blank" class="mep_plugin_pro_meta_link">'.__('Upgrade to PRO Version','mage-eventpress').'</a>'
|
||||
);
|
||||
}else{
|
||||
$wbbm_links = array(
|
||||
'docs' => '<a href="'.esc_url("https://docs.mage-people.com/woocommerce-event-manager/").'" target="_blank">'.__('Docs','mage-eventpress').'</a>',
|
||||
'support' => '<a href="'.esc_url("https://mage-people.com/my-account").'" target="_blank">'.__('Support','mage-eventpress').'</a>'
|
||||
);
|
||||
}
|
||||
$links_array = array_merge( $links_array, $wbbm_links );
|
||||
}
|
||||
|
||||
return $links_array;
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
require_once(dirname(__FILE__) . "/lib/classes/class-mep-required-plugins.php");
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user