zero price issue
This commit is contained in:
parent
efd24f7381
commit
4ed0c5e5f8
|
@ -49,7 +49,7 @@
|
|||
</td>
|
||||
<td class="mage_text_center"><?php echo wc_price(mep_get_price_including_tax($post_id, $field['option_price']));
|
||||
if ($ext_left > 0) { ?>
|
||||
<p style="display: none;" class="price_jq"><?php echo $data_price; ?></p>
|
||||
<p style="display: none;" class="price_jq"><?php echo $data_price > 0 ? $data_price : 0; ?></p>
|
||||
<input type="hidden" name='event_extra_service_name[]' value='<?php echo $field['option_name']; ?>'>
|
||||
<input type="hidden" name='event_extra_service_price[]' value='<?php echo $field['option_price']; ?>'>
|
||||
<?php } ?>
|
||||
|
|
|
@ -48,7 +48,7 @@
|
|||
<?php echo mep_get_option('mep_per_ticket_price_text', 'label_setting_sec') ? mep_get_option('mep_per_ticket_price_text', 'label_setting_sec') : _e('Per Ticket Price:', 'mage-eventpress'); ?>
|
||||
</span> <strong><?php echo wc_price(mep_get_price_including_tax($post_id,$ticket_price)); ?></strong>
|
||||
<?php if ($total_seats > 0) { ?>
|
||||
<p style="display: none;" class="price_jq"><?php echo $data_price; ?></p>
|
||||
<p style="display: none;" class="price_jq"><?php echo $data_price > 0 ? $data_price : 0; ?></p>
|
||||
|
||||
<?php } ?>
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue