Last active
June 1, 2016 15:48
-
-
Save Pebblo/04f2cce775c534d0b440 to your computer and use it in GitHub Desktop.
Output details just after the ticket selector, this hook passes the Event ID ($EVT_ID) and the EE_Event ($event) for use within the function if needed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Please do NOT include the opening php tag, except of course if you're starting with a blank file | |
//Output details just after the ticket selector, the function has the Event ID ($EVT_ID) | |
//and EE_Event object $event available for use. | |
function tw_output_details_after_the_ts( $EVT_ID, $event ) { | |
echo "<h1>TESTING TESTING</h1>"; | |
} | |
add_action( 'AHEE__ticket_selector_chart__template__after_ticket_selector', 'tw_output_details_after_the_ts', 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment