Tribe__Tickets__Commerce__PayPal__Notices::render_missing_identity_token_notice()
Renders (echoes) the missing PDT identity token admin notice.
Source
File: src/Tribe/Commerce/PayPal/Notices.php
public function render_missing_identity_token_notice() {
Tribe__Admin__Notices::instance()->render_paragraph(
$this->slug( 'pdt-missing-identity-token' ),
sprintf( '%s, <a href="%s" target="_blank">%s</a>.',
esc_html__( 'PayPal is using PDT data but you have not set the PDT identity token', 'event-tickets' ),
esc_url( admin_url() . '?page=tribe-common&tab=event-tickets#tribe-field-ticket-paypal-identity-token' ),
esc_html__( 'set it here', 'event-tickets' )
)
);
}
Changelog
| Version | Description |
|---|---|
| 4.7 | Introduced. |