Notice::display_notice()
HTML for the notice.
Return
(string)
Source
File: src/Tribe/Views/V2/Customizer/Notice.php
public function display_notice() {
/* translators: 1: opening <a> tag, 2: closing </a> tag. */
return sprintf(
esc_html_x(
'You are using the Inherit Theme Fonts extension. Font control is now built into %1$sThe Events Calendar\'s options in the WordPress Customizer.%2$s Please disable the Inherit Theme Fonts extension to prevent conflicts with The Events Calendar.',
'A link telling users to disable an extension that may conflict.',
'the-events-calendar'
),
'<a href="https://evnt.is/1ast" target="_blank">',
'</a>'
);
}
Changelog
| Version | Description |
|---|---|
| 5.9.0 | Introduced. |