Remove "Event Tickets" Meta Box

This topic contains 1 reply, has 2 voices, and was last updated by  Stephen Harris 10 years, 10 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #6308

    I can’t remove “Event Tickets” meta-box with remove_meta_box('eventorganiser_tickets', 'event', 'normal'); How I can do it?

    Gabriele
    #6309

    You can remove it with the following code:

    add_action( 'add_meta_boxes_event', 'gabriele_remove_event_ticket_meta_box', 50 );
    function gabriele_remove_event_ticket_meta_box( ){
        remove_meta_box('eventorganiser_tickets', 'event', 'normal');   
    }
    

    Or you can just hide it via the screen options (top-right).

    Stephen Harris
Viewing 2 posts - 1 through 2 (of 2 total)
To enable me to focus on Pro customers, only users who have a valid license for the Pro add-on may post new topics or replies in this forum. If you have a valid license, please log-in or register an account using the e-mail address you purchased the license with. If you don't you can purchase one here. Or there's always the WordPress repository forum.