Attendance_Totals::integrate_with_attendee_screen()
Avoid rendering the total if ET+ is active as this is added by Tribe__Tickets_Plus__Commerce__Attendance_Totals otherwise go with regular flow provided by the parent.
Source
File: src/Tickets/Commerce/Reports/Attendance_Totals.php
public function integrate_with_attendee_screen() {
if ( class_exists( 'Tribe__Tickets_Plus__Commerce__Attendance_Totals' ) ) {
return;
}
parent::integrate_with_attendee_screen();
}
Changelog
| Version | Description |
|---|---|
| 4.7.1 | Introduced. |