diff --git a/css/style.css b/css/style.css index 94c9200..ec7d09e 100644 --- a/css/style.css +++ b/css/style.css @@ -584,7 +584,7 @@ font-size: 14px; display: inline-block; } .extra-qty-box { - width: 45px!important; + width: auto!important; display: inline-block!important; padding: 4px 5px!important; } diff --git a/inc/mep_event_meta.php b/inc/mep_event_meta.php index cd9977e..9280a34 100644 --- a/inc/mep_event_meta.php +++ b/inc/mep_event_meta.php @@ -7,7 +7,7 @@ function mep_event_meta_box_add(){ add_meta_box( 'mep-event-price', 'Event Price (Event Base price, It will not work if you add Event Ticket type Price)', 'mep_event_price_meta_box_cb', 'mep_events', 'normal', 'high' ); - add_meta_box( 'mep-event-extra-price', 'Event Extra Option Price', 'mep_event_extra_price_option', 'mep_events', 'normal', 'high' ); + add_meta_box( 'mep-event-extra-price', 'Event Extra Service (Extra Service as Product that you can sell and it is not included on event package)', 'mep_event_extra_price_option', 'mep_events', 'normal', 'high' ); add_meta_box( 'mep-event-ticket-type', 'Event Ticket Type', 'mep_event_ticket_type', 'mep_events', 'normal', 'high' ); @@ -278,8 +278,8 @@ function mep_event_extra_price_option() {
Extra Option Name | -Price | +Extra Service Name | +Service Price | Available Qty | Qty Box Type | diff --git a/templates/template-prts/event_ticket_type.php b/templates/template-prts/event_ticket_type.php index 3f6ae28..6b888f9 100644 --- a/templates/template-prts/event_ticket_type.php +++ b/templates/template-prts/event_ticket_type.php @@ -27,17 +27,16 @@ $qty_t_type = $field['option_qty_t_type']; | - - +Ticket Qty: - + size="4" pattern="[0-9]*" inputmode="numeric" type="number" class='extra-qty-box etp' name='option_qty[]' data-price='' value='0' min="0" max=""> - + @@ -47,7 +46,7 @@ $qty_t_type = $field['option_qty_t_type']; | -+ | Per Ticket Price: '> diff --git a/woocommerce-event-press.php b/woocommerce-event-press.php index 6212acc..d60edc8 100644 --- a/woocommerce-event-press.php +++ b/woocommerce-event-press.php @@ -3,7 +3,7 @@ * Plugin Name: Woocommerce Events Manager * Plugin URI: http://mage-people.com * Description: A Complete Event Solution for WordPress by MagePeople.. -* Version: 2.0.1 +* Version: 2.0.2 * Author: MagePeople Team * Author URI: http://www.mage-people.com/ */ |
---|