Advertisement
BakerMan

Wrap ticket forms (Events Calendar)

Oct 2nd, 2012
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. // Take this line (in your custom events/single.php template)
  2. if (function_exists('tribe_get_ticket_form') && tribe_get_ticket_form()) { tribe_get_ticket_form(); }
  3.  
  4. // Change it to the following
  5. if (function_exists('tribe_get_ticket_form')) {
  6.     echo '<div id="my-special-container">';
  7.     tribe_get_ticket_form();
  8.     echo '</div>';
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement