MP_Addon_Payoff_Elementor::admin_notice_missing_main_plugin()
Admin notice.
Contents
Description Description
Warning when the site doesn’t have Elementor installed or activated.
Source Source
File: calculator-mortgage-payoff-add-on/inc/extensions/MP_Addon_Payoff_Elementor.php
public function admin_notice_missing_main_plugin() {
if ( isset( $_GET['activate'] ) ) unset( $_GET['activate'] );
$message = sprintf(
/* translators: 1: Plugin name 2: Elementor */
esc_html__( '"%1$s" requires "%2$s" to be installed and activated.', 'CalculatorsMortgagePayoffAddon' ),
'<strong>' . esc_html__( 'Elementor Extension', 'CalculatorsMortgagePayoffAddon' ) . '</strong>',
'<strong>' . esc_html__( 'Elementor', 'CalculatorsMortgagePayoffAddon' ) . '</strong>'
);
printf( '<div class="notice notice-warning is-dismissible"><p>%1$s</p></div>', $message );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |