$end_dt; } catch ( \Exception ) { // Keep $has_ended = false. } } echo '
'; if ( $product_id && ! $has_ended ) { $this->render_capacity_bar( $post_id ); $this->render_buy_button( $post_id, $product_id ); } elseif ( $has_ended ) { echo '

' . esc_html__( 'This event has ended.', 'eb4tec' ) . '

'; } if ( $eb_url ) { echo ''; } echo '
'; } private function render_capacity_bar( int $post_id ): void { $total = (int) get_post_meta( $post_id, '_eb4tec_capacity', true ); $available = $this->ticket_manager->get_available_capacity( $post_id ); if ( $total <= 0 ) { return; } $sold = max( 0, $total - $available ); $percent = (int) round( ( $sold / $total ) * 100 ); echo '
'; printf( '
', $sold, $total, $percent ); if ( $available > 0 ) { echo '

' . esc_html( sprintf( /* translators: 1: available spots, 2: total */ _n( '%1$d of %2$d spot remaining', '%1$d of %2$d spots remaining', $available, 'eb4tec' ), $available, $total ) ) . '

'; } else { echo '

' . esc_html__( 'Sold out', 'eb4tec' ) . '

'; } echo '
'; } private function render_buy_button( int $post_id, int $product_id ): void { $available = $this->ticket_manager->get_available_capacity( $post_id ); $button_html = ''; if ( $available > 0 ) { $product_url = get_permalink( $product_id ); $button_html = sprintf( '%s', esc_url( $product_url ), esc_html__( 'Buy Tickets', 'eb4tec' ) ); } else { $button_html = '' . esc_html__( 'Sold Out', 'eb4tec' ) . ''; } echo apply_filters( 'eb4tec_ticket_button_html', $button_html, $post_id ); } public function enqueue_styles(): void { if ( ! is_singular( 'tribe_events' ) ) { return; } wp_register_style( 'eb4tec-frontend', false ); wp_enqueue_style( 'eb4tec-frontend' ); wp_add_inline_style( 'eb4tec-frontend', $this->get_inline_css() ); } private function get_inline_css(): string { return ' .eb4tec-ticket-section { margin: 20px 0; padding: 16px 0; border-top: 1px solid #e5e5e5; } .eb4tec-capacity-wrap { margin-bottom: 12px; } .eb4tec-capacity-bar { background: #e5e5e5; border-radius: 4px; height: 8px; overflow: hidden; max-width: 300px; } .eb4tec-capacity-bar__fill { background: #2271b1; height: 100%; transition: width 0.3s ease; } .eb4tec-capacity-label { font-size: 0.875em; color: #555; margin: 4px 0 0; } .eb4tec-capacity-label--sold-out { color: #d63638; font-weight: 600; } .eb4tec-buy-button { display: inline-block; padding: 10px 20px; background: #2271b1; color: #fff !important; text-decoration: none; border-radius: 4px; font-weight: 600; margin-right: 8px; } .eb4tec-buy-button:hover { background: #135e96; } .eb4tec-sold-out-badge { display: inline-block; padding: 8px 16px; background: #d63638; color: #fff; border-radius: 4px; font-weight: 600; } .eb4tec-event-ended { color: #555; font-style: italic; } .eb4tec-eb-link { margin-top: 8px; font-size: 0.875em; } .eb4tec-ticket-classes { list-style: none; padding: 0; margin: 0 0 12px; } .eb4tec-ticket-class { padding: 6px 0; border-bottom: 1px solid #f0f0f0; } .eb4tec-ticket-sold-out { color: #d63638; font-size: 0.85em; } '; } }