Created
March 20, 2018 06:06
-
-
Save cliffordp/d1b96a03b12a74e0bd7676a46523dc9a to your computer and use it in GitHub Desktop.
The Events Calendar: Eventbrite Tickets: Customize the iframe's height.
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 | |
/** | |
* The Events Calendar: Eventbrite Tickets: Customize the iframe's height. | |
* | |
* Since Eventbrite Tickets version 4.4.6. | |
* | |
* @see Tribe__Events__Tickets__Eventbrite__Template::the_tickets() | |
* | |
* @link https://gist.github.com/cliffordp/d1b96a03b12a74e0bd7676a46523dc9a | |
*/ | |
function cliff_tec_ebtix_custom_iframe_height() { | |
return 400; // pixel height | |
} | |
add_filter( 'tribe_events_eventbrite_iframe_height', 'cliff_tec_ebtix_custom_iframe_height' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment