style & function update

This commit is contained in:
magepeopleteam 2021-10-04 04:14:37 +00:00
parent 030448002f
commit 803596c2ad
3 changed files with 4 additions and 5 deletions

View File

@ -1972,6 +1972,9 @@ font-size: 14px;
font-weight:500;
text-transform: uppercase;
}
ul#mep_event_date_sch li span {
display: inline-block;
}
.vanilla_theme table td,
.vanilla_theme table td.total-col{
font-size: 14px;

View File

@ -354,10 +354,6 @@ function mep_add_custom_fields_text_to_order_items($item, $cart_item_key, $value
}
}
if (is_array($event_extra_service) && sizeof($event_extra_service) > 0) {
foreach ($event_extra_service as $extra_service) {
$service_type_name = $extra_service['service_name'] . " - " . wc_price(mep_get_price_including_tax($eid,$extra_service['service_price'])) . ' x ' . $extra_service['service_qty'] . ' = ';

View File

@ -1,6 +1,6 @@
<li>
<span class="mep-more-date"><i class="fa fa-calendar"></i>
<span class='mep_date_scdl_start_datetime'> <?php echo get_mep_datetime($start_datetime, 'date-text'); ?> <?php echo get_mep_datetime($start_datetime, 'time'); ?></span>
<?php if($end_date_display_status == 'yes'){?> <span class='mep_date_scdl_end_datetime'> <?php if ($start_date != $end_date) { echo ' <span class="mep_date_scdl_separator"> - </span> ' . get_mep_datetime($end_datetime, 'date-text'); } echo ' '.get_mep_datetime($end_datetime, 'time'); echo '</span>'; } ?>
<?php if($end_date_display_status == 'yes'){?> <span class='mep_date_scdl_end_datetime'> <?php echo ' <span class="mep_date_scdl_separator"> - </span> '; if ($start_date != $end_date) { get_mep_datetime($end_datetime, 'date-text'); } echo ' '.get_mep_datetime($end_datetime, 'time'); echo '</span>'; } ?>
</span>
</li>