Okay
  Public Ticket #2283684
Ticket Booking
Closed

Comments

  • preet618 started the conversation

    I want to create free ticket registration for event. so users just register for event with their information like name,email,company,phone and no. of people without any cost. and I try but I am not able to do it.

    Can you please guide me how can I make ticket booking just like a simple form instead of add to cart process. I am not a developer but know little about html. Please help me.

    Thank you.

  •  793
    Zhivko replied

    Hi,

    Unfortunately there's no way to skip the WooCommerce cart process. 

    You can set the product price to '0' and this will render the product as Free.

    There's one thing you should do before that:

    Open file stachethemes_event_calendar\view\admin\tickets\index.php

    edit line 46 from:

            $price            = Admin_Helper::post('wc_book_create_ticket_price', '', FILTER_VALIDATE_FLOAT);

    to:

    $price = Admin_Helper::post('wc_book_create_ticket_price', 0, FILTER_VALIDATE_FLOAT);

    This edit will be included with the next update.


    Stachethemes Developer