PluginProbe
Hostinger Tools / 3.0.41
Hostinger Tools v3.0.41
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
← All changes | includes/Helper.php +16 -0 3.0.773.0.41 View file →
@@ -97,9 +97,25 @@
97 97
98 98 return $code;
99 99 }
100 100
101 + public function should_plugin_split_notice_shown() {
102 + $plugin_split_notice_hidden = get_option( 'hts_plugin_split_notice_hidden', false );
101 103
104 + if ( $plugin_split_notice_hidden !== false ) {
105 + return false;
106 + }
107 +
108 + if ( ! version_compare( HOSTINGER_VERSION, '3.0.0', '>=' ) ) {
109 + return false;
110 + }
111 +
112 + if ( is_plugin_active( 'hostinger-easy-onboarding/hostinger-easy-onboarding.php' ) ) {
113 + return false;
114 + }
115 +
116 + return true;
117 + }
102 118
103 119 public function get_hostinger_plugin_url(): string {
104 120 $website_locale = get_locale() ?? 'en_US';
105 121 $reseller_locale = get_option( 'hostinger_reseller', null );