Advertisement
BakerMan

iframe eb

Oct 14th, 2013
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. add_filter('tribe_template_factory_debug', 'change_eb_iframe_height');
  2.  
  3. function change_eb_iframe_height($html) {
  4.     if (false === strpos($html, 'eventbrite-ticket-embed')) return $html;
  5.     return str_replace('style="height:200px;', 'style="height:300px;', $html);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement