unitedstatesbowlingacademy

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Moving the ticket Box #702119

    I found another post that achieved what I wanted. Here it is in case some comes across this here: https://theeventscalendar.com/moving-the-ticket-form/

    in reply to: Moving the ticket Box #702106

    I tried adding the function to move the tickets box using the function above. I have a child theme so I created a file called functions.php in my child theme and then added the code below. When I upload it to my child theme and refresh the site, I get a completely white page. Any suggestions?

    <?php
    add_action( ‘init’, ‘move_eb_ticket_form’ );

    function move_eb_ticket_form() {
    $callback = array( Event_Tickets_PRO::instance(), ‘displayEventBriteTicketForm’ );
    remove_action( ‘tribe_events_single_event_after_the_meta’, $callback, 9 );
    add_action( ‘tribe_events_single_event_before_the_content’, $callback );
    }
    ?>

Viewing 2 posts - 1 through 2 (of 2 total)