Advertisement
BakerMan

How many attendees (WooTickets 1.0.1)

Apr 15th, 2013
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. /**
  2.  * This could be added within the cart contents loop (in WooCommerce 2.0.7
  3.  * it starts at line 119 in review-order.php) to sum the number of event attendees.
  4.  *
  5.  * Later on you could use that to generate the corresponding number of attendee
  6.  * data fields.
  7.  */
  8. if (get_post_meta($_product->id, '_tribe_wooticket_for_event') > 0)
  9.     $attendee_count += $values['quantity'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement