Tribe__Tickets__Commerce__PayPal__Main::enqueue_resources()
Enqueue the plugin admin stylesheet(s) and JS.
Source
File: src/Tribe/Commerce/PayPal/Main.php
public function enqueue_resources() {
$post_types = Tribe__Tickets__Main::instance()->post_types();
if ( ! is_singular( $post_types ) ) {
return;
}
wp_enqueue_style( 'event-tickets-tpp-css' );
wp_enqueue_script( 'event-tickets-tpp-js' );
// Check for override stylesheet
$user_stylesheet_url = Tribe__Templates::locate_stylesheet( 'tribe-events/tickets/tpp.css' );
// If override stylesheet exists, then enqueue it
if ( $user_stylesheet_url ) {
wp_enqueue_style( 'tribe-events-tickets-tpp-override-style', $user_stylesheet_url );
}
}
Changelog
| Version | Description |
|---|---|
| 4.7 | Introduced. |