Advertisement
jesseeproductions

Events Calendar - Add Pro Additional Field to Ticket Email

Sep 16th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php /*
  2. * The Events Calendar - Add Pro Additional Field to Ticket Emails
  3. * Change tribe_get_custom_field's first field to the label of your Additional Field
  4. * Add to /tickets/email.php
  5. */?>
  6. <table class="whiteSpace" border="0" cellpadding="0" cellspacing="0" width="100%">
  7. <tr>
  8. <td><h6><?php _e( "Price: ", "custom_event" );?></h6>
  9. <?php echo tribe_get_custom_field('Price', $event->ID);?>
  10. </td>
  11. <td><h6><?php _e( "Description: ", "custom_event" );?></h6>
  12. <?php echo tribe_get_custom_field('Description', $event->ID); ?>
  13. </td>
  14. </tr>
  15. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement