PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.10.5
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.10.5
4.0.8 4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 All 149 releases
← All changes | vendor/codeinwp/themeisle-sdk/src/Modules/Promotions.php +121 -953 4.0.73.10.5 View file →
@@ -13,9 +13,8 @@
13 13
14 14 namespace ThemeisleSDK\Modules;
15 15
16 16 use ThemeisleSDK\Common\Abstract_Module;
17 -use ThemeisleSDK\Loader;
18 17 use ThemeisleSDK\Product;
19 18
20 19 // Exit if accessed directly.
21 20 if ( ! defined( 'ABSPATH' ) ) {
@@ -31,19 +30,11 @@
31 30 * Holds the promotions.
32 31 *
33 32 * @var array
34 33 */
35 - public $promotions = array();
34 + private $promotions = array();
36 35
37 36 /**
38 - * Holds the values of the promotions that are not allowed to be shown.
39 - * Can be filtered by each product.
40 - *
41 - * @var array
42 - */
43 - private $dissallowed_promotions = array();
44 -
45 - /**
46 37 * Option key for promos.
47 38 *
48 39 * @var string
49 40 */
@@ -70,50 +61,15 @@
70 61 */
71 62 private $option_rop = 'themeisle_sdk_promotions_rop_installed';
72 63
73 64 /**
74 - * Option key for Neve promo.
65 + * Option key for Neve FSE promos.
75 66 *
76 67 * @var string
77 68 */
78 - private $option_neve = 'themeisle_sdk_promotions_neve_installed';
69 + private $option_neve_fse = 'themeisle_sdk_promotions_neve_fse_installed';
79 70
80 71 /**
81 - * Option key for Redirection for CF7.
82 - *
83 - * @var string
84 - */
85 - private $option_redirection_cf7 = 'themeisle_sdk_promotions_redirection_cf7_installed';
86 -
87 - /**
88 - * Option key for Hyve.
89 - *
90 - * @var string
91 - */
92 - private $option_hyve = 'themeisle_sdk_promotions_hyve_installed';
93 -
94 - /**
95 - * Option key for WP Full Pay.
96 - *
97 - * @var string
98 - */
99 - private $option_wp_full_pay = 'themeisle_sdk_promotions_wp_full_pay_installed';
100 -
101 - /**
102 - * Option key for Feedzy.
103 - *
104 - * @var string
105 - */
106 - private $option_feedzy = 'themeisle_sdk_promotions_feedzy_installed';
107 -
108 - /**
109 - * Option key for Masteriyo promos.
110 - *
111 - * @var string
112 - */
113 - private $option_masteriyo = 'themeisle_sdk_promotions_masteriyo_installed';
114 -
115 - /**
116 72 * Loaded promotion.
117 73 *
118 74 * @var string
119 75 */
@@ -147,35 +103,23 @@
147 103 if ( $this->is_from_partner( $product ) ) {
148 104 return false;
149 105 }
150 106
151 - $this->debug = apply_filters( 'themeisle_sdk_promo_debug', $this->debug );
152 - $promotions_to_load = apply_filters( $product->get_key() . '_load_promotions', array() );
153 -
107 + $this->debug = apply_filters( 'themeisle_sdk_promo_debug', $this->debug );
108 + $promotions_to_load = apply_filters( $product->get_key() . '_load_promotions', array() );
154 109 $promotions_to_load[] = 'optimole';
155 110 $promotions_to_load[] = 'rop';
156 111 $promotions_to_load[] = 'woo_plugins';
157 - $promotions_to_load[] = 'neve';
158 - $promotions_to_load[] = 'redirection-cf7';
159 - $promotions_to_load[] = 'hyve';
160 - $promotions_to_load[] = 'wp_full_pay';
161 - $promotions_to_load[] = 'feedzy_import';
162 - $promotions_to_load[] = 'learning-management-system';
112 + $promotions_to_load[] = 'neve-fse';
163 113
164 - if ( defined( 'NEVE_VERSION' ) || defined( 'WPMM_PATH' ) || defined( 'OTTER_BLOCKS_VERSION' ) || defined( 'OBFX_URL' ) ) {
165 - $promotions_to_load[] = 'feedzy_embed';
166 - }
167 - $promotions_to_load = array_unique( $promotions_to_load );
168 -
169 114 $this->promotions = $this->get_promotions();
170 115
171 - $this->dissallowed_promotions = apply_filters( $product->get_key() . '_dissallowed_promotions', array() );
172 -
173 116 foreach ( $this->promotions as $slug => $data ) {
174 117 if ( ! in_array( $slug, $promotions_to_load, true ) ) {
175 118 unset( $this->promotions[ $slug ] );
176 119 }
177 120 }
121 +
178 122 add_action( 'init', array( $this, 'register_settings' ), 99 );
179 123 add_action( 'admin_init', array( $this, 'register_reference' ), 99 );
180 124
181 125 return ! empty( $this->promotions );
@@ -190,227 +134,28 @@
190 134 if ( ! $this->is_writeable() || ! current_user_can( 'install_plugins' ) ) {
191 135 return;
192 136 }
193 137
194 - $last_dismiss_time = $this->get_last_dismiss_time();
138 + $this->product = $product;
195 139
196 - if ( ! $this->debug && is_int( $last_dismiss_time ) && ( time() - $last_dismiss_time ) < ( 3 * WEEK_IN_SECONDS ) ) {
140 + $last_dismiss = $this->get_last_dismiss_time();
141 +
142 + if ( ! $this->debug && $last_dismiss && ( time() - $last_dismiss ) < 7 * DAY_IN_SECONDS ) {
197 143 return;
198 144 }
199 145
200 - $this->product = $product;
201 -
202 146 add_filter( 'attachment_fields_to_edit', array( $this, 'add_attachment_field' ), 10, 2 );
203 147 add_action( 'current_screen', [ $this, 'load_available' ] );
204 148 add_action( 'elementor/editor/after_enqueue_scripts', array( $this, 'enqueue' ) );
205 - add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_visualizer_block_editor_shim' ), 100 );
206 149 add_action( 'wp_ajax_tisdk_update_option', array( $this, 'dismiss_promotion' ) );
207 - add_filter( 'plugins_api_result', array( $this, 'inject_visualizer_block_directory_suggestion' ), 10, 3 );
208 - add_filter( 'option_visualizer-activated', array( $this, 'suppress_visualizer_onboarding_in_editor' ) );
209 150 add_filter( 'themeisle_sdk_ran_promos', '__return_true' );
210 151
211 - if ( get_option( $this->option_neve, false ) !== true ) {
212 - add_action( 'wp_ajax_themeisle_sdk_dismiss_notice', 'ThemeisleSDK\Modules\Notification::dismiss' );
152 + if ( get_option( $this->option_neve_fse, false ) !== true ) {
153 + add_action( 'wp_ajax_themeisle_sdk_dismiss_notice', 'ThemeisleSDK\Modules\Notification::regular_dismiss' );
213 154 }
214 155 }
215 156
216 -
217 157 /**
218 - * Inject Visualizer as the first block-directory suggestion for chart queries.
219 - *
220 - * @param object|WP_Error $res Response object or WP_Error.
221 - * @param string $action The API action.
222 - * @param object $args The API arguments.
223 - * @return object|WP_Error
224 - */
225 - public function inject_visualizer_block_directory_suggestion( $res, $action, $args ) {
226 - if ( 'query_plugins' !== $action || ! is_object( $args ) || empty( $args->block ) ) {
227 - return $res;
228 - }
229 -
230 - if ( ! $this->should_suggest_visualizer( $args->block ) ) {
231 - return $res;
232 - }
233 -
234 - if ( $this->is_plugin_installed( 'visualizer' ) ) {
235 - return $res;
236 - }
237 -
238 - $plugin = $this->get_visualizer_block_directory_data();
239 - if ( empty( $plugin ) ) {
240 - return $res;
241 - }
242 -
243 - if ( is_wp_error( $res ) ) {
244 - $res = (object) array( 'plugins' => array() );
245 - }
246 -
247 - if ( ! isset( $res->plugins ) || ! is_array( $res->plugins ) ) {
248 - $res->plugins = array();
249 - }
250 -
251 - $res->plugins = array_values(
252 - array_filter(
253 - $res->plugins,
254 - function ( $existing ) use ( $plugin ) {
255 - return ! isset( $existing['slug'] ) || $existing['slug'] !== $plugin['slug'];
256 - }
257 - )
258 - );
259 -
260 - array_unshift( $res->plugins, $plugin );
261 -
262 - return $res;
263 - }
264 -
265 - /**
266 - * Check if the query should trigger the Visualizer suggestion.
267 - *
268 - * @param string $term Search term.
269 - * @return bool
270 - */
271 - private function should_suggest_visualizer( $term ) {
272 - $term = strtolower( (string) $term );
273 - return false !== strpos( $term, 'chart' ) || false !== strpos( $term, 'visualizer' ) || false !== strpos( $term, 'visualization' ) || false !== strpos( $term, 'graph' );
274 - }
275 -
276 - /**
277 - * Build the plugin data for Visualizer block directory results.
278 - *
279 - * @return array
280 - */
281 - private function get_visualizer_block_directory_data() {
282 - $slug = 'visualizer';
283 - $plugin_info = $this->call_plugin_api( $slug );
284 -
285 - if ( is_wp_error( $plugin_info ) || empty( $plugin_info ) ) {
286 - return array();
287 - }
288 -
289 - $icons = array();
290 - if ( ! empty( $plugin_info->icons ) ) {
291 - if ( ! empty( $plugin_info->icons['1x'] ) ) {
292 - $icons['1x'] = $plugin_info->icons['1x'];
293 - }
294 - if ( ! empty( $plugin_info->icons['2x'] ) ) {
295 - $icons['2x'] = $plugin_info->icons['2x'];
296 - }
297 - }
298 -
299 - $name = isset( $plugin_info->name ) ? $plugin_info->name : 'Visualizer';
300 -
301 - return array(
302 - 'slug' => $slug,
303 - 'name' => $name,
304 - 'short_description' => isset( $plugin_info->short_description ) ? $plugin_info->short_description : '',
305 - 'author' => isset( $plugin_info->author ) ? wp_strip_all_tags( $plugin_info->author ) : '',
306 - 'rating' => isset( $plugin_info->rating ) ? (int) $plugin_info->rating : 0,
307 - 'num_ratings' => isset( $plugin_info->num_ratings ) ? (int) $plugin_info->num_ratings : 0,
308 - 'active_installs' => isset( $plugin_info->active_installs ) ? (int) $plugin_info->active_installs : 0,
309 - 'author_block_rating' => isset( $plugin_info->author_block_rating ) ? (int) $plugin_info->author_block_rating : 0,
310 - 'author_block_count' => isset( $plugin_info->author_block_count ) ? (int) $plugin_info->author_block_count : 0,
311 - 'icons' => $icons,
312 - 'last_updated' => isset( $plugin_info->last_updated ) ? $plugin_info->last_updated : gmdate( 'Y-m-d H:i:s' ),
313 - 'blocks' => array(
314 - array(
315 - 'name' => 'visualizer/chart',
316 - 'title' => $name,
317 - ),
318 - ),
319 - );
320 - }
321 -
322 -
323 - /**
324 - * Prevent Visualizer onboarding redirects while in the block editor.
325 - *
326 - * @param mixed $value Option value.
327 - * @return mixed
328 - */
329 - public function suppress_visualizer_onboarding_in_editor( $value ) {
330 - if ( ! $this->is_block_editor_screen() ) {
331 - return $value;
332 - }
333 -
334 - return false;
335 - }
336 -
337 - /**
338 - * Add a small compatibility shim for Visualizer's block editor bundle.
339 - *
340 - * Visualizer's "Display an existing chart" flow reads
341 - * `google.visualization.Version` before the Google Charts loader has fully
342 - * populated `google.visualization`, which can throw after dynamic install.
343 - *
344 - * @return void
345 - */
346 - public function enqueue_visualizer_block_editor_shim() {
347 - global $themeisle_sdk_max_version;
348 -
349 - if ( ! $this->is_block_editor_screen() ) {
350 - return;
351 - }
352 -
353 - if ( ! wp_script_is( 'visualizer-gutenberg-block', 'enqueued' ) ) {
354 - return;
355 - }
356 -
357 - wp_register_script(
358 - 'ti-sdk-visualizer-editor-shim',
359 - '',
360 - array(),
361 - $themeisle_sdk_max_version,
362 - true
363 - );
364 - wp_enqueue_script( 'ti-sdk-visualizer-editor-shim' );
365 - wp_add_inline_script(
366 - 'ti-sdk-visualizer-editor-shim',
367 - 'window.google = window.google || {}; window.google.visualization = window.google.visualization || {}; window.google.visualization.Version = window.google.visualization.Version || "current";'
368 - );
369 - }
370 -
371 - /**
372 - * Check if the current admin screen is the block editor.
373 - *
374 - * @return bool
375 - */
376 - private function is_block_editor_screen() {
377 - if ( ! function_exists( 'get_current_screen' ) ) {
378 - return $this->is_block_editor_request();
379 - }
380 -
381 - $screen = get_current_screen();
382 - if ( is_object( $screen ) && method_exists( $screen, 'is_block_editor' ) && $screen->is_block_editor() ) {
383 - return true;
384 - }
385 -
386 - return $this->is_block_editor_request();
387 - }
388 -
389 - /**
390 - * Detect block editor requests before the current screen is available.
391 - *
392 - * @return bool
393 - */
394 - private function is_block_editor_request() {
395 - global $pagenow;
396 -
397 - if ( 'post-new.php' === $pagenow ) {
398 - $post_type = isset( $_GET['post_type'] ) ? sanitize_key( $_GET['post_type'] ) : 'post';
399 -
400 - return function_exists( 'use_block_editor_for_post_type' ) ? use_block_editor_for_post_type( $post_type ) : true;
401 - }
402 -
403 - if ( 'post.php' === $pagenow && isset( $_GET['post'] ) ) {
404 - $post_id = absint( $_GET['post'] );
405 -
406 - return function_exists( 'use_block_editor_for_post' ) ? use_block_editor_for_post( $post_id ) : true;
407 - }
408 -
409 - return false;
410 - }
411 -
412 - /**
413 158 * Load available promotions.
414 159 */
415 160 public function load_available() {
416 161 $this->promotions = $this->filter_by_screen_and_merge();
@@ -427,21 +172,8 @@
427 172 *
428 173 * @return void
429 174 */
430 175 public function register_reference() {
431 - if ( ! current_user_can( 'activate_plugins' ) ) {
432 - return;
433 - }
434 -
435 - if ( ! isset( $_GET['plugin'] ) || ! isset( $_GET['_wpnonce'] ) ) {
436 - return;
437 - }
438 -
439 - $plugin = rawurldecode( $_GET['plugin'] ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
440 - if ( wp_verify_nonce( $_GET['_wpnonce'], 'activate-plugin_' . $plugin ) === false ) { // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
441 - return;
442 - }
443 -
444 176 if ( isset( $_GET['reference_key'] ) ) {
445 177 update_option( 'otter_reference_key', sanitize_key( $_GET['reference_key'] ) );
446 178 }
447 179
@@ -452,24 +184,11 @@
452 184 if ( isset( $_GET['rop_reference_key'] ) ) {
453 185 update_option( 'rop_reference_key', sanitize_key( $_GET['rop_reference_key'] ) );
454 186 }
455 187
456 - if ( isset( $_GET['neve_reference_key'] ) ) {
457 - update_option( 'neve_reference_key', sanitize_key( $_GET['neve_reference_key'] ) );
188 + if ( isset( $_GET['neve_fse_reference_key'] ) ) {
189 + update_option( 'neve_fse_reference_key', sanitize_key( $_GET['neve_fse_reference_key'] ) );
458 190 }
459 -
460 - if ( isset( $_GET['hyve_reference_key'] ) ) {
461 - update_option( 'hyve_reference_key', sanitize_key( $_GET['hyve_reference_key'] ) );
462 - }
463 -
464 - if ( isset( $_GET['wp_full_pay_reference_key'] ) ) {
465 - update_option( 'wp_full_pay_reference_key', sanitize_key( $_GET['wp_full_pay_reference_key'] ) );
466 - }
467 -
468 - if ( isset( $_GET['feedzy_reference_key'] ) || ( isset( $_GET['from'], $_GET['plugin'] ) && $_GET['from'] === 'import' && str_starts_with( sanitize_key( $_GET['plugin'] ), 'feedzy' ) ) ) {
469 - update_option( 'feedzy_reference_key', sanitize_key( $_GET['feedzy_reference_key'] ?? 'i-' . $this->product->get_key() ) );
470 - update_option( $this->option_feedzy, 1 );
471 - }
472 191 }
473 192
474 193 /**
475 194 * Register Settings
@@ -519,9 +238,9 @@
519 238 )
520 239 );
521 240 register_setting(
522 241 'themeisle_sdk_settings',
523 - $this->option_neve,
242 + $this->option_neve_fse,
524 243 array(
525 244 'type' => 'boolean',
526 245 'sanitize_callback' => 'rest_sanitize_boolean',
527 246 'show_in_rest' => true,
@@ -527,48 +246,8 @@
527 246 'show_in_rest' => true,
528 247 'default' => false,
529 248 )
530 249 );
531 - register_setting(
532 - 'themeisle_sdk_settings',
533 - $this->option_redirection_cf7,
534 - array(
535 - 'type' => 'boolean',
536 - 'sanitize_callback' => 'rest_sanitize_boolean',
537 - 'show_in_rest' => true,
538 - 'default' => false,
539 - )
540 - );
541 - register_setting(
542 - 'themeisle_sdk_settings',
543 - $this->option_hyve,
544 - array(
545 - 'type' => 'boolean',
546 - 'sanitize_callback' => 'rest_sanitize_boolean',
547 - 'show_in_rest' => true,
548 - 'default' => false,
549 - )
550 - );
551 - register_setting(
552 - 'themeisle_sdk_settings',
553 - $this->option_wp_full_pay,
554 - array(
555 - 'type' => 'boolean',
556 - 'sanitize_callback' => 'rest_sanitize_boolean',
557 - 'show_in_rest' => true,
558 - 'default' => false,
559 - )
560 - );
561 - register_setting(
562 - 'themeisle_sdk_settings',
563 - $this->option_masteriyo,
564 - array(
565 - 'type' => 'boolean',
566 - 'sanitize_callback' => 'rest_sanitize_boolean',
567 - 'show_in_rest' => true,
568 - 'default' => false,
569 - )
570 - );
571 250 }
572 251
573 252 /**
574 253 * Check if the path is writable.
@@ -589,14 +268,14 @@
589 268 }
590 269
591 270 /**
592 271 * Third-party compatibility.
593 - *
272 + *
594 273 * @return boolean
595 274 */
596 275 private function has_conflicts() {
597 276 global $pagenow;
598 -
277 +
599 278 // Editor notices aren't compatible with Enfold theme.
600 279 if ( defined( 'AV_FRAMEWORK_VERSION' ) && in_array( $pagenow, array( 'post.php', 'post-new.php' ) ) ) {
601 280 return true;
602 281 }
@@ -609,50 +288,33 @@
609 288 *
610 289 * @return array
611 290 */
612 291 private function get_promotions() {
613 - $has_otter = defined( 'OTTER_BLOCKS_VERSION' ) || $this->is_plugin_installed( 'otter-blocks' );
614 - $had_otter_from_promo = get_option( $this->option_otter, false );
615 - $has_optimole = defined( 'OPTIMOLE_VERSION' ) || $this->is_plugin_installed( 'optimole-wp' );
616 - $had_optimole_from_promo = get_option( $this->option_optimole, false );
617 - $has_rop = defined( 'ROP_LITE_VERSION' ) || $this->is_plugin_installed( 'tweet-old-post' );
618 - $had_rop_from_promo = get_option( $this->option_rop, false );
619 - $has_woocommerce = class_exists( 'WooCommerce' );
620 - $has_sparks = defined( 'SPARKS_WC_VERSION' ) || $this->is_plugin_installed( 'sparks-for-woocommerce' );
621 - $has_ppom = defined( 'PPOM_VERSION' ) || $this->is_plugin_installed( 'woocommerce-product-addon' );
622 - $has_redirection_cf7 = defined( 'WPCF7_PRO_REDIRECT_PLUGIN_VERSION' ) || $this->is_plugin_installed( 'wpcf7-redirect' );
623 - $had_redirection_cf7_promo = get_option( $this->option_redirection_cf7, false );
624 - $is_min_php_7_4 = version_compare( PHP_VERSION, '7.4', '>=' );
625 - $is_min_php_7_2 = version_compare( PHP_VERSION, '7.2', '>=' );
626 - $can_check_plugin_install = $this->can_check_plugin_install_promo();
627 - $has_hyve = defined( 'HYVE_LITE_VERSION' ) || $this->is_plugin_installed( 'hyve' ) || $this->is_plugin_installed( 'hyve-lite' );
628 - $had_hyve_from_promo = get_option( $this->option_hyve, false );
629 - $has_hyve_conditions = $is_min_php_7_4 && ! $has_hyve && ! $had_hyve_from_promo && version_compare( get_bloginfo( 'version' ), '6.2', '>=' ) && $can_check_plugin_install && $this->has_support_page();
630 - $has_wfp_full_pay = defined( 'WP_FULL_STRIPE_BASENAME' ) || $this->is_plugin_installed( 'wp-full-stripe-free' );
631 - $had_wfp_from_promo = get_option( $this->option_wp_full_pay, false );
632 - $has_wfp_conditions = ! $has_wfp_full_pay && ! $had_wfp_from_promo && $can_check_plugin_install && $this->has_donate_page();
633 - $is_min_req_v = version_compare( get_bloginfo( 'version' ), '5.8', '>=' );
634 - $current_theme = wp_get_theme();
635 - $has_neve = $current_theme->template === 'neve' || $current_theme->parent() === 'neve';
636 - $has_neve_from_promo = get_option( $this->option_neve, false );
637 - $has_enough_attachments = $this->has_min_media_attachments();
638 - $has_enough_old_posts = $this->has_old_posts();
639 - $has_feedzy = defined( 'FEEDZY_BASEFILE' ) || $this->is_plugin_installed( 'feedzy-rss-feedss' );
640 - $had_feedzy_from_promo = get_option( $this->option_feedzy, false );
641 - $had_masteriyo_from_promo = get_option( $this->option_masteriyo, false );
642 - $has_masteriyo_conditions = $is_min_php_7_2 && ! $had_masteriyo_from_promo && ! $this->has_active_lms_plugin() && $can_check_plugin_install && $this->has_lms_tagline();
292 + $has_otter = defined( 'OTTER_BLOCKS_VERSION' ) || $this->is_plugin_installed( 'otter-blocks' );
293 + $had_otter_from_promo = get_option( $this->option_otter, false );
294 + $has_optimole = defined( 'OPTIMOLE_VERSION' ) || $this->is_plugin_installed( 'optimole-wp' );
295 + $had_optimole_from_promo = get_option( $this->option_optimole, false );
296 + $has_rop = defined( 'ROP_LITE_VERSION' ) || $this->is_plugin_installed( 'tweet-old-post' );
297 + $had_rop_from_promo = get_option( $this->option_rop, false );
298 + $has_woocommerce = class_exists( 'WooCommerce' );
299 + $has_sparks = defined( 'SPARKS_WC_VERSION' ) || $this->is_plugin_installed( 'sparks-for-woocommerce' );
300 + $has_ppom = defined( 'PPOM_VERSION' ) || $this->is_plugin_installed( 'woocommerce-product-addon' );
301 + $is_min_req_v = version_compare( get_bloginfo( 'version' ), '5.8', '>=' );
302 + $is_min_fse_v = version_compare( get_bloginfo( 'version' ), '6.2', '>=' );
303 + $current_theme = wp_get_theme();
304 + $has_neve_fse = $current_theme->template === 'neve-fse' || $current_theme->parent() === 'neve-fse';
305 + $has_enough_attachments = $this->has_min_media_attachments();
306 + $has_enough_old_posts = $this->has_old_posts();
643 307
644 308 $all = [
645 - 'optimole' => [
309 + 'optimole' => [
646 310 'om-editor' => [
647 - 'env' => ! $has_optimole && $is_min_req_v && ! $had_optimole_from_promo,
648 - 'screen' => 'editor',
649 - 'delayed' => true,
311 + 'env' => ! $has_optimole && $is_min_req_v && ! $had_optimole_from_promo,
312 + 'screen' => 'editor',
650 313 ],
651 314 'om-image-block' => [
652 - 'env' => ! $has_optimole && $is_min_req_v && ! $had_optimole_from_promo,
653 - 'screen' => 'editor',
654 - 'delayed' => true,
315 + 'env' => ! $has_optimole && $is_min_req_v && ! $had_optimole_from_promo,
316 + 'screen' => 'editor',
655 317 ],
656 318 'om-attachment' => [
657 319 'env' => ! $has_optimole && ! $had_optimole_from_promo,
658 320 'screen' => 'media-editor',
@@ -661,51 +323,33 @@
661 323 'env' => ! $has_optimole && ! $had_optimole_from_promo && $has_enough_attachments,
662 324 'screen' => 'media',
663 325 ],
664 326 'om-elementor' => [
665 - 'env' => ! $has_optimole && ! $had_optimole_from_promo && defined( 'ELEMENTOR_VERSION' ),
666 - 'screen' => 'elementor',
667 - 'delayed' => true,
327 + 'env' => ! $has_optimole && ! $had_optimole_from_promo && defined( 'ELEMENTOR_VERSION' ),
328 + 'screen' => 'elementor',
668 329 ],
669 330 ],
670 - 'feedzy_import' => [
671 - 'feedzy-import' => [
672 - 'env' => true,
673 - 'screen' => 'import',
674 - 'always' => true,
675 - ],
676 - ],
677 - 'feedzy_embed' => [
678 - 'feedzy-editor' => [
679 - 'env' => ! $has_feedzy && is_main_site() && ! $had_feedzy_from_promo,
331 + 'otter' => [
332 + 'blocks-css' => [
333 + 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
680 334 'screen' => 'editor',
681 335 ],
682 - ],
683 - 'otter' => [
684 - 'blocks-css' => [
685 - 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
686 - 'screen' => 'editor',
687 - 'delayed' => true,
688 - ],
689 336 'blocks-animation' => [
690 - 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
691 - 'screen' => 'editor',
692 - 'delayed' => true,
337 + 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
338 + 'screen' => 'editor',
693 339 ],
694 340 'blocks-conditions' => [
695 - 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
696 - 'screen' => 'editor',
697 - 'delayed' => true,
341 + 'env' => ! $has_otter && $is_min_req_v && ! $had_otter_from_promo,
342 + 'screen' => 'editor',
698 343 ],
699 344 ],
700 - 'rop' => [
345 + 'rop' => [
701 346 'rop-posts' => [
702 - 'env' => ! $has_rop && ! $had_rop_from_promo && $has_enough_old_posts,
703 - 'screen' => 'edit-post',
704 - 'delayed' => true,
347 + 'env' => ! $has_rop && ! $had_rop_from_promo && $has_enough_old_posts,
348 + 'screen' => 'edit-post',
705 349 ],
706 350 ],
707 - 'woo_plugins' => [
351 + 'woo_plugins' => [
708 352 'ppom' => [
709 353 'env' => ! $has_ppom && $has_woocommerce,
710 354 'screen' => 'edit-product',
711 355 ],
@@ -721,39 +365,14 @@
721 365 'env' => ! $has_sparks && $has_woocommerce,
722 366 'screen' => 'edit-product',
723 367 ],
724 368 ],
725 - 'neve' => [
726 - 'neve-themes-popular' => [
727 - 'env' => ! $has_neve && ! $has_neve_from_promo,
369 + 'neve-fse' => [
370 + 'neve-fse-themes-popular' => [
371 + 'env' => ! $has_neve_fse && $is_min_fse_v,
728 372 'screen' => 'themes-install-popular',
729 373 ],
730 374 ],
731 - 'redirection-cf7' => [
732 - 'wpcf7' => [
733 - 'env' => ! $has_redirection_cf7 && ! $had_redirection_cf7_promo,
734 - 'screen' => 'wpcf7',
735 - 'delayed' => true,
736 - ],
737 - ],
738 - 'hyve' => [
739 - 'hyve-plugins-install' => [
740 - 'env' => $has_hyve_conditions,
741 - 'screen' => 'plugin-install',
742 - ],
743 - ],
744 - 'wp_full_pay' => [
745 - 'wp-full-pay-plugins-install' => [
746 - 'env' => $has_wfp_conditions,
747 - 'screen' => 'plugin-install',
748 - ],
749 - ],
750 - 'learning-management-system' => [
751 - 'masteriyo-plugins-install' => [
752 - 'env' => $has_masteriyo_conditions,
753 - 'screen' => 'plugin-install',
754 - ],
755 - ],
756 375 ];
757 376
758 377 foreach ( $all as $slug => $data ) {
759 378 foreach ( $data as $key => $conditions ) {
@@ -771,8 +390,9 @@
771 390 if ( empty( $all[ $slug ] ) ) {
772 391 unset( $all[ $slug ] );
773 392 }
774 393 }
394 +
775 395 return $all;
776 396 }
777 397
778 398 /**
@@ -797,14 +417,20 @@
797 417
798 418 /**
799 419 * Get the last dismiss time of a promotion.
800 420 *
801 - * @return int | false The timestamp of last dismiss or false.
421 + * @return int The timestamp of last dismiss, or install time - 4 days.
802 422 */
803 423 private function get_last_dismiss_time() {
804 424 $dismissed = $this->get_upsells_dismiss_time();
805 425
806 - return empty( $dismissed ) ? false : max( array_values( $dismissed ) );
426 + if ( empty( $dismissed ) ) {
427 + // we return the product install time - 4 days because we want to show the upsell after 3 days,
428 + // and we move the product install time 4 days in the past.
429 + return $this->product->get_install_time() - 4 * DAY_IN_SECONDS;
430 + }
431 +
432 + return max( array_values( $dismissed ) );
807 433 }
808 434
809 435 /**
810 436 * Filter by screen & merge into single array of keys.
@@ -813,45 +439,19 @@
813 439 */
814 440 private function filter_by_screen_and_merge() {
815 441 $current_screen = get_current_screen();
816 442
817 - $is_elementor = isset( $_GET['action'] ) && $_GET['action'] === 'elementor';
818 - $is_media = isset( $current_screen->id ) && $current_screen->id === 'upload';
819 - $is_posts = isset( $current_screen->id ) && $current_screen->id === 'edit-post';
820 - $is_editor = method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor();
821 - $is_theme_install = isset( $current_screen->id ) && ( $current_screen->id === 'theme-install' );
822 - $is_plugin_install = isset( $current_screen->id ) && ( $current_screen->id === 'plugin-install' );
823 - $is_product = isset( $current_screen->id ) && $current_screen->id === 'product';
824 - $is_import = isset( $current_screen->id ) && $current_screen->id === 'import';
825 - $is_cf7_install = isset( $current_screen->id ) && function_exists( 'str_contains' ) ? str_contains( $current_screen->id, 'page_wpcf7' ) : false;
443 + $is_elementor = isset( $_GET['action'] ) && $_GET['action'] === 'elementor';
444 + $is_media = isset( $current_screen->id ) && $current_screen->id === 'upload';
445 + $is_posts = isset( $current_screen->id ) && $current_screen->id === 'edit-post';
446 + $is_editor = method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor();
447 + $is_theme_install = isset( $current_screen->id ) && ( $current_screen->id === 'theme-install' || $current_screen->id === 'themes' );
448 + $is_product = isset( $current_screen->id ) && $current_screen->id === 'product';
826 449
827 - $return = [];
828 - $product_install_time = (int) $this->product->get_install_time();
829 - $is_older = time() > ( $product_install_time + ( 3 * DAY_IN_SECONDS ) );
830 - $is_newer = time() < ( $product_install_time + ( 6 * HOUR_IN_SECONDS ) );
450 + $return = [];
451 +
831 452 foreach ( $this->promotions as $slug => $promos ) {
832 453 foreach ( $promos as $key => $data ) {
833 -
834 - $data = wp_parse_args(
835 - $data,
836 - [
837 - 'delayed' => false,
838 - 'always' => false,
839 - ]
840 - );
841 -
842 - if (
843 - ! $this->debug &&
844 - (
845 - ( $data['delayed'] === true && ! $is_older ) || // Skip promotions that are delayed for 3 days.
846 - $is_newer // Skip promotions for the first 6 hours after install.
847 - )
848 - && ! $data['always']
849 - ) {
850 - unset( $this->promotions[ $slug ][ $key ] );
851 -
852 - continue;
853 - }
854 454 switch ( $data['screen'] ) {
855 455 case 'media-editor':
856 456 if ( ! $is_media && ! $is_editor ) {
857 457 unset( $this->promotions[ $slug ][ $key ] );
@@ -866,13 +466,8 @@
866 466 if ( ! $is_editor || $is_elementor ) {
867 467 unset( $this->promotions[ $slug ][ $key ] );
868 468 }
869 469 break;
870 - case 'import':
871 - if ( ! $is_import ) {
872 - unset( $this->promotions[ $slug ][ $key ] );
873 - }
874 - break;
875 470 case 'elementor':
876 471 if ( ! $is_elementor ) {
877 472 unset( $this->promotions[ $slug ][ $key ] );
878 473 }
@@ -891,18 +486,8 @@
891 486 if ( ! $is_theme_install ) {
892 487 unset( $this->promotions[ $slug ][ $key ] );
893 488 }
894 489 break;
895 - case 'wpcf7':
896 - if ( ! $is_cf7_install ) {
897 - unset( $this->promotions[ $slug ][ $key ] );
898 - }
899 - break;
900 - case 'plugin-install':
901 - if ( ! $is_plugin_install ) {
902 - unset( $this->promotions[ $slug ][ $key ] );
903 - }
904 - break;
905 490 }
906 491 }
907 492
908 493 $return = array_merge( $return, $this->promotions[ $slug ] );
@@ -907,16 +492,8 @@
907 492
908 493 $return = array_merge( $return, $this->promotions[ $slug ] );
909 494 }
910 495
911 - $return = array_filter(
912 - $return,
913 - function ( $value, $key ) {
914 - return ! in_array( $key, $this->dissallowed_promotions, true );
915 - },
916 - ARRAY_FILTER_USE_BOTH
917 - );
918 -
919 496 return array_keys( $return );
920 497 }
921 498
922 499 /**
@@ -935,31 +512,16 @@
935 512 }
936 513 if ( $this->get_upsells_dismiss_time( 'rop-posts' ) === false ) {
937 514 add_action( 'admin_notices', [ $this, 'render_rop_dash_notice' ] );
938 515 }
939 - if ( $this->get_upsells_dismiss_time( 'neve-themes-popular' ) === false ) {
940 - add_action( 'admin_notices', [ $this, 'render_neve_themes_notice' ] );
516 + if ( $this->get_upsells_dismiss_time( 'neve-fse-themes-popular' ) === false ) {
517 + add_action( 'admin_notices', [ $this, 'render_neve_fse_themes_notice' ] );
941 518 }
942 - if ( $this->get_upsells_dismiss_time( 'redirection-cf7' ) === false ) {
943 - add_action( 'admin_notices', [ $this, 'render_redirection_cf7_notice' ] );
944 - }
945 - if ( $this->get_upsells_dismiss_time( 'hyve-plugins-install' ) === false ) {
946 - add_action( 'admin_notices', [ $this, 'render_hyve_notice' ] );
947 - }
948 519
949 - if ( $this->get_upsells_dismiss_time( 'wp-full-pay-plugins-install' ) === false ) {
950 - add_action( 'admin_notices', [ $this, 'render_wp_full_pay_notice' ] );
951 - }
952 -
953 - if ( $this->get_upsells_dismiss_time( 'masteriyo-plugins-install' ) === false ) {
954 - add_action( 'admin_notices', [ $this, 'render_masteriyo_notice' ] );
955 - }
956 -
957 - add_action( 'load-import.php', [ $this, 'add_import' ] );
958 520 $this->load_woo_promos();
959 -
960 521 return;
961 522 }
523 +
962 524 switch ( $slug ) {
963 525 case 'om-editor':
964 526 case 'om-image-block':
965 527 case 'blocks-css':
@@ -977,15 +539,8 @@
977 539 case 'rop-posts':
978 540 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
979 541 add_action( 'admin_notices', [ $this, 'render_rop_dash_notice' ] );
980 542 break;
981 - case 'feedzy-import':
982 - add_action( 'load-import.php', [ $this, 'add_import' ] );
983 -
984 - break;
985 - case 'feedzy-editor':
986 - add_action( 'enqueue_block_editor_assets', [ $this, 'enqueue' ] );
987 - break;
988 543 case 'ppom':
989 544 case 'sparks-wishlist':
990 545 case 'sparks-announcement':
991 546 case 'sparks-product-reviews':
@@ -990,63 +545,22 @@
990 545 case 'sparks-announcement':
991 546 case 'sparks-product-reviews':
992 547 $this->load_woo_promos();
993 548 break;
994 - case 'neve-themes-popular':
995 - // Remove any other notifications if Neve promotion is showing
549 + case 'neve-fse-themes-popular':
550 + // Remove any other notifications if Neve FSE promotion is showing
996 551 remove_action( 'admin_notices', array( 'ThemeisleSDK\Modules\Notification', 'show_notification' ) );
997 - remove_action(
998 - 'wp_ajax_themeisle_sdk_dismiss_notice',
999 - array(
1000 - 'ThemeisleSDK\Modules\Notification',
1001 - 'dismiss',
1002 - )
1003 - );
552 + remove_action( 'wp_ajax_themeisle_sdk_dismiss_notice', array( 'ThemeisleSDK\Modules\Notification', 'dismiss' ) );
1004 553 remove_action( 'admin_head', array( 'ThemeisleSDK\Modules\Notification', 'dismiss_get' ) );
1005 554 remove_action( 'admin_head', array( 'ThemeisleSDK\Modules\Notification', 'setup_notifications' ) );
1006 555 // Add required actions to display this notification
1007 556 add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
1008 - add_action( 'admin_notices', [ $this, 'render_neve_themes_notice' ] );
557 + add_action( 'admin_notices', [ $this, 'render_neve_fse_themes_notice' ] );
1009 558 break;
1010 - case 'wpcf7':
1011 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
1012 - add_action( 'admin_notices', [ $this, 'render_redirection_cf7_notice' ] );
1013 - break;
1014 - case 'hyve-plugins-install':
1015 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
1016 - add_action( 'admin_notices', [ $this, 'render_hyve_notice' ] );
1017 - break;
1018 - case 'wp-full-pay-plugins-install':
1019 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
1020 - add_action( 'admin_notices', [ $this, 'render_wp_full_pay_notice' ] );
1021 - break;
1022 - case 'masteriyo-plugins-install':
1023 - add_action( 'admin_enqueue_scripts', [ $this, 'enqueue' ] );
1024 - add_action( 'admin_notices', [ $this, 'render_masteriyo_notice' ] );
1025 - break;
1026 559 }
1027 560 }
1028 561
1029 562 /**
1030 - * Add import row.
1031 - *
1032 - * @return void
1033 - */
1034 - public function add_import() {
1035 - global $wp_importers;
1036 - if ( isset( $wp_importers['feedzy-rss-feeds'] ) ) {
1037 - return;
1038 - }
1039 - $wp_importers['feedzy-rss-feeds'] = array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
1040 - 'Feedzy',
1041 - sprintf( Loader::$labels['promotions']['feedzy']['import_desc'], '<span style="float: left; font-style: italic;margin-top:0.4em;">', $this->product->get_friendly_name(), '</span>' ),
1042 - 'install' => 'feedzy-rss-feeds',
1043 - );
1044 - if ( defined( 'FEEDZY_BASEFILE' ) ) {
1045 - unset( $wp_importers['feedzy-rss-feeds']['install'] );
1046 - }
1047 - }
1048 - /**
1049 563 * Render dashboard notice.
1050 564 */
1051 565 public function render_optimole_dash_notice() {
1052 566 $screen = get_current_screen();
@@ -1069,68 +583,30 @@
1069 583 $user = wp_get_current_user();
1070 584 $asset_file = require $themeisle_sdk_max_path . '/assets/js/build/promos/index.asset.php';
1071 585 $deps = array_merge( $asset_file['dependencies'], [ 'updates' ] );
1072 586
1073 - $themes = wp_get_themes();
1074 - $neve_action = isset( $themes['neve'] ) ? 'activate' : 'install';
1075 - $labels = Loader::$labels['promotions'];
1076 - $labels['feedzy']['editor_recommends'] = sprintf(
1077 - $labels['feedzy']['editor_recommends'],
1078 - $this->product->get_friendly_name(),
1079 - '<a target="_blank" href="' . add_query_arg(
1080 - array(
1081 - 'tab' => 'plugin-information',
1082 - 'plugin' => 'feedzy-rss-feeds',
1083 - '_wpnonce' => wp_create_nonce( 'activate-plugin_feedzy-rss-feeds' ),
1084 - 'feedzy_reference_key' => 'e-' . $this->product->get_key(),
1085 - ),
1086 - network_admin_url( 'plugin-install.php' )
1087 - ) . '">',
1088 - '</a>'
1089 - );
1090 587 wp_register_script( $handle, $themeisle_sdk_src . 'assets/js/build/promos/index.js', $deps, $asset_file['version'], true );
1091 588 wp_localize_script(
1092 589 $handle,
1093 590 'themeisleSDKPromotions',
1094 591 [
1095 - 'debug' => $this->debug,
1096 - 'labels' => $labels,
1097 - 'email' => $user->user_email,
1098 - 'showPromotion' => $this->loaded_promo,
1099 - 'optionKey' => $this->option_main,
1100 - 'product' => $this->product->get_name(),
1101 - 'option' => empty( $saved ) ? new \stdClass() : $saved,
1102 - 'nonce' => wp_create_nonce( 'wp_rest' ),
1103 - 'assets' => $themeisle_sdk_src . 'assets/images/',
1104 - 'optimoleApi' => esc_url( rest_url( 'optml/v1/register_service' ) ),
1105 - 'optimoleActivationUrl' => $this->get_plugin_activation_link( 'optimole-wp' ),
1106 - 'otterActivationUrl' => $this->get_plugin_activation_link( 'otter-blocks' ),
1107 - 'ropActivationUrl' => $this->get_plugin_activation_link( 'tweet-old-post' ),
1108 - 'optimoleDash' => esc_url( add_query_arg( [ 'page' => 'optimole' ], admin_url( 'upload.php' ) ) ),
1109 - 'ropDash' => esc_url( add_query_arg( [ 'page' => 'TweetOldPost' ], admin_url( 'admin.php' ) ) ),
592 + 'debug' => $this->debug,
593 + 'email' => $user->user_email,
594 + 'showPromotion' => $this->loaded_promo,
595 + 'optionKey' => $this->option_main,
596 + 'product' => $this->product->get_name(),
597 + 'option' => empty( $saved ) ? new \stdClass() : $saved,
598 + 'nonce' => wp_create_nonce( 'wp_rest' ),
599 + 'assets' => $themeisle_sdk_src . 'assets/images/',
600 + 'optimoleApi' => esc_url( rest_url( 'optml/v1/register_service' ) ),
601 + 'optimoleActivationUrl' => $this->get_plugin_activation_link( 'optimole-wp' ),
602 + 'otterActivationUrl' => $this->get_plugin_activation_link( 'otter-blocks' ),
603 + 'ropActivationUrl' => $this->get_plugin_activation_link( 'tweet-old-post' ),
604 + 'optimoleDash' => esc_url( add_query_arg( [ 'page' => 'optimole' ], admin_url( 'upload.php' ) ) ),
605 + 'ropDash' => esc_url( add_query_arg( [ 'page' => 'TweetOldPost' ], admin_url( 'admin.php' ) ) ),
606 + 'neveFSEMoreUrl' => tsdk_utmify( 'https://themeisle.com/themes/neve-fse/', 'neve-fse-themes-popular', 'theme-install' ),
1110 607 // translators: %s is the product name.
1111 - 'title' => esc_html( sprintf( Loader::$labels['promotions']['recommended'], $this->product->get_name() ) ),
1112 - 'redirectionCF7MoreUrl' => tsdk_utmify( 'https://docs.themeisle.com/collection/2014-redirection-for-contact-form-7', 'redirection-for-contact-form-7', 'plugin-install' ),
1113 - 'rfCF7ActivationUrl' => $this->get_plugin_activation_link( 'wpcf7-redirect' ),
1114 - 'cf7Dash' => esc_url( add_query_arg( [ 'page' => 'wpcf7-new' ], admin_url( 'admin.php' ) ) ),
1115 - 'hyveActivationUrl' => $this->get_plugin_activation_link( 'hyve-lite' ),
1116 - 'hyveDash' => esc_url( add_query_arg( [ 'page' => 'wpfs-settings-stripe' ], admin_url( 'admin.php' ) ) ),
1117 - 'wpFullPayActivationUrl' => $this->get_plugin_activation_link( 'wp-full-stripe-free' ),
1118 - 'wpFullPayDash' => esc_url( add_query_arg( [ 'page' => 'wpfs-settings-stripe' ], admin_url( 'admin.php' ) ) ),
1119 - 'masteriyoActivationUrl' => $this->get_plugin_activation_link( 'masteriyo' ),
1120 - 'masteriyoDash' => esc_url( add_query_arg( [ 'page' => 'masteriyo-onboard' ], admin_url( 'index.php' ) ) ),
1121 - 'nevePreviewURL' => esc_url( add_query_arg( [ 'theme' => 'neve' ], admin_url( 'theme-install.php' ) ) ),
1122 - 'neveAction' => $neve_action,
1123 - 'activateNeveURL' => esc_url(
1124 - add_query_arg(
1125 - [
1126 - 'action' => 'activate',
1127 - 'stylesheet' => 'neve',
1128 - '_wpnonce' => wp_create_nonce( 'switch-theme_neve' ),
1129 - ],
1130 - admin_url( 'themes.php' )
1131 - )
1132 - ),
608 + 'title' => esc_html( sprintf( __( 'Recommended by %s', 'textdomain' ), $this->product->get_name() ) ),
1133 609 ]
1134 610 );
1135 611 wp_enqueue_script( $handle );
1136 612 wp_enqueue_style( $handle, $themeisle_sdk_src . 'assets/js/build/promos/style-index.css', [ 'wp-components' ], $asset_file['version'] );
@@ -1149,43 +625,15 @@
1149 625 echo '<div id="ti-rop-notice" class="notice notice-info ti-sdk-rop-notice"></div>';
1150 626 }
1151 627
1152 628 /**
1153 - * Render Neve Themes notice.
629 + * Render Neve FSE Themes notice.
1154 630 */
1155 - public function render_neve_themes_notice() {
1156 - echo '<div id="ti-neve-notice" class="notice notice-info ti-sdk-om-notice"></div>';
631 + public function render_neve_fse_themes_notice() {
632 + echo '<div id="ti-neve-fse-notice" class="notice notice-info ti-sdk-neve-fse-notice"></div>';
1157 633 }
1158 634
1159 635 /**
1160 - * Render Hyve notice.
1161 - */
1162 - public function render_hyve_notice() {
1163 - echo '<div id="ti-hyve-notice" class="notice notice-info ti-sdk-om-notice"></div>';
1164 - }
1165 -
1166 - /**
1167 - * Render WP Full Pay notice.
1168 - */
1169 - public function render_wp_full_pay_notice() {
1170 - echo '<div id="ti-wp-full-pay-notice" class="notice notice-info ti-sdk-om-notice"></div>';
1171 - }
1172 -
1173 - /**
1174 - * Render Redirection for CF7 notice.
1175 - */
1176 - public function render_redirection_cf7_notice() {
1177 - echo '<div id="ti-redirection-cf7-notice" class="notice notice-info ti-sdk-om-notice"></div>';
1178 - }
1179 -
1180 - /**
1181 - * Render Masteriyo notice.
1182 - */
1183 - public function render_masteriyo_notice() {
1184 - echo '<div id="ti-masteriyo-notice" class="notice notice-info ti-sdk-om-notice"></div>';
1185 - }
1186 -
1187 - /**
1188 636 * Add promo to attachment modal.
1189 637 *
1190 638 * @param array $fields Fields array.
1191 639 * @param \WP_Post $post Post object.
@@ -1202,9 +650,9 @@
1202 650 }
1203 651
1204 652 $meta = wp_get_attachment_metadata( $post->ID );
1205 653
1206 - if ( isset( $meta['filesize'] ) && $meta['filesize'] < 100000 ) {
654 + if ( isset( $meta['filesize'] ) && $meta['filesize'] < 200000 ) {
1207 655 return $fields;
1208 656 }
1209 657
1210 658 $fields['optimole'] = array(
@@ -1244,9 +692,8 @@
1244 692
1245 693
1246 694 set_transient( 'tsk_attachment_count', $attachment_count, DAY_IN_SECONDS );
1247 695 }
1248 -
1249 696 return $attachment_count > 50;
1250 697 }
1251 698
1252 699 /**
@@ -1306,10 +753,10 @@
1306 753 */
1307 754 private function load_woo_promos() {
1308 755 $this->woo_promos = array(
1309 756 'ppom' => array(
1310 - 'title' => Loader::$labels['promotions']['woo']['ppom_title'],
1311 - 'description' => Loader::$labels['promotions']['woo']['ppom_desc'],
757 + 'title' => 'Product Add-Ons',
758 + 'description' => 'Add extra custom fields & add-ons on your product pages, like sizes, colors & more.',
1312 759 'icon' => '<svg width="25" height="25" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1800 1800"><path d="M241.023,324.818c0.252,0,0.505,0.035,0.758,0.035h465.68c17.266,0,31.256-13.99,31.256-31.252 c0-17.262-13.99-31.247-31.256-31.247H351.021h-109.24c-17.258,0-31.252,13.985-31.252,31.247 C210.529,310.605,224.121,324.412,241.023,324.818z"/><path d="M210.529,450.306c0,17.257,13.994,31.252,31.252,31.252h769.451c17.262,0,31.256-13.995,31.256-31.252 c0-17.266-13.994-31.252-31.256-31.252H241.781C224.523,419.054,210.529,433.04,210.529,450.306z"/><path d="M1011.232,575.751H241.781c-8.149,0-15.549,3.147-21.116,8.261c-6.213,5.712-10.136,13.879-10.136,22.987 c0,17.262,13.994,31.26,31.252,31.26h769.451c17.262,0,31.256-13.999,31.256-31.26c0-9.108-3.923-17.275-10.141-22.987 C1026.781,578.898,1019.386,575.751,1011.232,575.751z"/><path d="M1011.232,732.461H241.781c-17.258,0-31.252,13.99-31.252,31.247c0,17.262,13.994,31.257,31.252,31.257 h769.451c17.262,0,31.256-13.995,31.256-31.257C1042.488,746.451,1028.494,732.461,1011.232,732.461z"/><path d="M1011.232,889.157H241.781c-8.149,0-15.549,3.147-21.116,8.261c-6.213,5.713-10.136,13.879-10.136,22.987 c0,17.257,13.994,31.261,31.252,31.261h769.451c17.262,0,31.256-14.004,31.256-31.261c0-9.108-3.923-17.274-10.141-22.987 C1026.781,892.305,1019.386,889.157,1011.232,889.157z"/><path d="M1011.232,1045.867H241.781c-17.258,0-31.252,13.99-31.252,31.243c0,17.271,13.994,31.265,31.252,31.265 h769.451c17.262,0,31.256-13.994,31.256-31.265C1042.488,1059.857,1028.494,1045.867,1011.232,1045.867z"/><path d="M1011.232,1202.576H241.781c-17.258,0-31.252,13.995-31.252,31.252c0,17.258,13.994,31.252,31.252,31.252 h769.451c17.262,0,31.256-13.994,31.256-31.252C1042.488,1216.571,1028.494,1202.576,1011.232,1202.576z"/><path d="M1011.232,1359.273H241.781c-8.149,0-15.549,3.151-21.116,8.265c-6.213,5.713-10.136,13.875-10.136,22.987 c0,17.258,13.994,31.261,31.252,31.261h769.451c17.262,0,31.256-14.003,31.256-31.261c0-9.112-3.923-17.274-10.141-22.987 C1026.781,1362.425,1019.386,1359.273,1011.232,1359.273z"/><path d="M1233.542,251.228l-49.851-45.109L1052.136,87.076l-59.185-53.554c-5.293-4.792-11.947-7.421-18.786-7.836 h-3.49H83.676c-45.688,0-82.858,37.375-82.858,83.316v1583.612c0,45.94,37.17,83.316,82.858,83.316h1078.562 c45.68,0,82.845-37.376,82.845-83.316V277.08v-3.182C1244.646,264.73,1240.261,256.589,1233.542,251.228z M1003.117,125.864 l131.119,118.657h-131.119V125.864z M1183.691,1692.613c0,12.094-9.622,21.926-21.454,21.926H83.676 c-11.836,0-21.467-9.832-21.467-21.926V109.001c0-12.089,9.631-21.925,21.467-21.925h857.857V275.38 c0,17.052,13.785,30.862,30.786,30.862h211.372V1692.613z"/><path d="M1798.578,180.737c-7.049-88.305-81.114-158.02-171.205-158.02c-0.004,0-0.004,0-0.004,0 c-45.889,0-89.033,17.874-121.479,50.32c-29.18,29.175-46.519,67.005-49.73,107.699h-0.586v13.609c0,0.06-0.005,0.115-0.005,0.175 c0,0.026,0.005,0.056,0.005,0.082l-0.005,1369.26h0.197c0.557,5.404,2.522,10.731,6.047,15.373l141.135,185.91 c5.803,7.648,14.851,12.136,24.447,12.136c9.601-0.004,18.646-4.496,24.447-12.14l141.093-185.897 c3.528-4.65,5.494-9.982,6.051-15.391h0.197V180.737H1798.578z M1549.299,116.448c20.854-20.855,48.578-32.339,78.07-32.339h0.004 c50.24,0,92.746,33.723,106.076,79.718h-212.19C1526.358,146.098,1535.896,129.852,1549.299,116.448z M1595.372,1502.468 l-78.413,0.005l0.005-1260.345h220.828v1260.336h-81.103l0.009-1016.486l-61.335,0.004L1595.372,1502.468z M1627.382,1695.821 l-100.171-131.963l200.338-0.004L1627.382,1695.821z"/></svg>',
1313 760 'has_install' => true,
1314 761 'link' => wp_nonce_url(
1315 762 add_query_arg(
@@ -1322,22 +769,22 @@
1322 769 'install-plugin_woocommerce-product-addon'
1323 770 ),
1324 771 ),
1325 772 'sparks-wishlist' => array(
1326 - 'title' => Loader::$labels['promotions']['woo']['spark_title1'],
1327 - 'description' => Loader::$labels['promotions']['woo']['spark_desc1'],
773 + 'title' => 'Wishlist',
774 + 'description' => 'Loyalize your customers by allowing them to save their favorite products.',
1328 775 'icon' => '<svg width="25" height="25" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/SVG" aria-hidden="true"><path d="M60 21.25H57.5V40.125H60V21.25Z"></path><path d="M2.5 40H0V8.75C0 6.625 1.625 5 3.75 5H25V7.5H3.75C3 7.5 2.5 8 2.5 8.75V40Z"></path><path d="M56.25 51.25H3.75C1.625 51.25 0 49.625 0 47.5V42.5H25V45H2.5V47.5C2.5 48.25 3 48.75 3.75 48.75H56.25C57 48.75 57.5 48.25 57.5 47.5V43.75H60V47.5C60 49.625 58.375 51.25 56.25 51.25Z"></path><path d="M23.75 58.75H21.25V57.25L22.5 51.125V50H25V51.5L23.75 57.625V58.75Z"></path><path d="M38.75 58.75H36.25V57.625L35 51.25V50H37.5V51.125L38.75 57.5V58.75Z"></path><path d="M41.25 57.5H18.75V60H41.25V57.5Z"></path><path d="M56.25 32.5H43.75C41.625 32.5 40 30.875 40 28.75V3.75C40 1.625 41.625 0 43.75 0H56.25C58.375 0 60 1.625 60 3.75V28.75C60 30.875 58.375 32.5 56.25 32.5ZM43.75 2.5C43 2.5 42.5 3 42.5 3.75V28.75C42.5 29.5 43 30 43.75 30H56.25C57 30 57.5 29.5 57.5 28.75V3.75C57.5 3 57 2.5 56.25 2.5H43.75Z"></path><path d="M50 27.5C50.6904 27.5 51.25 26.9404 51.25 26.25C51.25 25.5596 50.6904 25 50 25C49.3096 25 48.75 25.5596 48.75 26.25C48.75 26.9404 49.3096 27.5 50 27.5Z"></path><path d="M51.25 45H31.25C29.125 45 27.5 43.375 27.5 41.25V8.75C27.5 6.625 29.125 5 31.25 5H37.5V7.5H31.25C30.5 7.5 30 8 30 8.75V41.25C30 42 30.5 42.5 31.25 42.5H51.25C52 42.5 52.5 42 52.5 41.25V35H55V41.25C55 43.375 53.375 45 51.25 45Z"></path><path d="M41.25 40C41.9404 40 42.5 39.4404 42.5 38.75C42.5 38.0596 41.9404 37.5 41.25 37.5C40.5596 37.5 40 38.0596 40 38.75C40 39.4404 40.5596 40 41.25 40Z"></path><path d="M21.75 40H18.25L13.25 35H11.75L6.75 40H0V37.5H5.75L10.75 32.5H14.25L19.25 37.5H20.75L52.875 5.375L54.625 7.125L21.75 40Z"></path><path d="M55 11.25H52.5V7.5H48.75V5H55V11.25Z"></path><defs><clip-path id="clip0"><rect width="60" height="60" fill="white"></rect></clip-path></defs></svg>',
1329 776 'link' => tsdk_utmify( 'https://themeisle.com/plugins/sparks-for-woocommerce/', 'promo', 'products-tabs' ),
1330 777 ),
1331 778 'sparks-announcement' => array(
1332 - 'title' => Loader::$labels['promotions']['woo']['spark_title2'],
1333 - 'description' => Loader::$labels['promotions']['woo']['spark_desc2'],
779 + 'title' => 'Multi-Announcement Bars',
780 + 'description' => 'Add a top notification bar on your website to highlight the latest products, offers, or upcoming events.',
1334 781 'icon' => '<svg width="25" height="25" viewBox="0 0 60 61" fill="none" xmlns="http://www.w3.org/2000/SVG" aria-hidden="true"><path d="M30 8.89282C29.6685 8.89282 29.3505 8.76113 29.1161 8.52671C28.8817 8.29228 28.75 7.97434 28.75 7.64282V1.39282C28.75 1.0613 28.8817 0.743359 29.1161 0.508939C29.3505 0.274518 29.6685 0.142822 30 0.142822C30.3315 0.142822 30.6495 0.274518 30.8839 0.508939C31.1183 0.743359 31.25 1.0613 31.25 1.39282V7.64282C31.25 7.97434 31.1183 8.29228 30.8839 8.52671C30.6495 8.76113 30.3315 8.89282 30 8.89282Z"></path><path d="M30 21.9105L26.25 18.1605V7.82598L26.9409 7.47992C27.8914 7.00723 28.9385 6.76123 30 6.76123C31.0615 6.76123 32.1086 7.00723 33.0591 7.47992L33.75 7.82598V18.1605L30 21.9105ZM28.75 17.1253L30 18.3753L31.25 17.1253V9.44219C30.4344 9.19928 29.5656 9.19928 28.75 9.44219V17.1253Z"></path><path d="M60 60.1428H0V22.6428H17.5C17.8315 22.6428 18.1495 22.7745 18.3839 23.0089C18.6183 23.2434 18.75 23.5613 18.75 23.8928C18.75 24.2243 18.6183 24.5423 18.3839 24.7767C18.1495 25.0111 17.8315 25.1428 17.5 25.1428H2.5V57.6428H57.5V25.1428H42.5C42.1685 25.1428 41.8505 25.0111 41.6161 24.7767C41.3817 24.5423 41.25 24.2243 41.25 23.8928C41.25 23.5613 41.3817 23.2434 41.6161 23.0089C41.8505 22.7745 42.1685 22.6428 42.5 22.6428H60V60.1428Z"></path><path d="M11.2493 53.8933C11.0421 53.8929 10.8383 53.841 10.6561 53.7424C10.474 53.6438 10.3191 53.5015 10.2055 53.3283C10.0919 53.1551 10.0231 52.9564 10.0052 52.75C9.98727 52.5436 10.0209 52.336 10.103 52.1458L26.353 14.6459C26.4182 14.4953 26.5125 14.359 26.6304 14.2448C26.7483 14.1306 26.8876 14.0408 27.0402 13.9804C27.1928 13.9201 27.3559 13.8903 27.52 13.893C27.6841 13.8956 27.8461 13.9306 27.9967 13.9958C28.1473 14.0611 28.2836 14.1553 28.3978 14.2732C28.5119 14.3912 28.6018 14.5304 28.6621 14.683C28.7225 14.8357 28.7522 14.9987 28.7496 15.1628C28.7469 15.3269 28.712 15.4889 28.6467 15.6395L12.3967 53.1395C12.2999 53.3634 12.1397 53.5541 11.9358 53.6881C11.7319 53.822 11.4932 53.8934 11.2493 53.8933Z"></path><path d="M48.7505 53.8935C48.5065 53.8935 48.2679 53.8222 48.064 53.6883C47.8601 53.5543 47.6999 53.3637 47.603 53.1398L31.353 15.6398C31.2212 15.3356 31.2157 14.9915 31.3376 14.6833C31.4595 14.375 31.6989 14.1278 32.003 13.9961C32.3072 13.8643 32.6513 13.8588 32.9595 13.9807C33.2678 14.1026 33.515 14.3419 33.6467 14.6461L49.8967 52.1461C49.9789 52.3363 50.0125 52.5439 49.9946 52.7503C49.9767 52.9566 49.9078 53.1553 49.7942 53.3285C49.6806 53.5018 49.5258 53.6441 49.3436 53.7427C49.1614 53.8413 48.9576 53.8932 48.7505 53.8936V53.8935Z"></path><path d="M30 33.8928C29.6685 33.8928 29.3505 33.7611 29.1161 33.5267C28.8817 33.2923 28.75 32.9743 28.75 32.6428V25.1428C28.75 24.8113 28.8817 24.4934 29.1161 24.2589C29.3505 24.0245 29.6685 23.8928 30 23.8928C30.3315 23.8928 30.6495 24.0245 30.8839 24.2589C31.1183 24.4934 31.25 24.8113 31.25 25.1428V32.6428C31.25 32.9743 31.1183 33.2923 30.8839 33.5267C30.6495 33.7611 30.3315 33.8928 30 33.8928Z"></path><path d="M45 30.1428H15C14.6685 30.1428 14.3505 30.0111 14.1161 29.7767C13.8817 29.5423 13.75 29.2243 13.75 28.8928C13.75 28.5613 13.8817 28.2434 14.1161 28.0089C14.3505 27.7745 14.6685 27.6428 15 27.6428H45C45.3315 27.6428 45.6495 27.7745 45.8839 28.0089C46.1183 28.2434 46.25 28.5613 46.25 28.8928C46.25 29.2243 46.1183 29.5423 45.8839 29.7767C45.6495 30.0111 45.3315 30.1428 45 30.1428Z"></path><defs><clip-path id="clip0"><rect width="60" height="60" fill="white" transform="translate(0 0.142822)"></rect></clip-path></defs></svg>',
1335 782 'link' => tsdk_utmify( 'https://themeisle.com/plugins/sparks-for-woocommerce/', 'promo', 'products-tabs' ),
1336 783 ),
1337 784 'sparks-product-review' => array(
1338 - 'title' => Loader::$labels['promotions']['woo']['spark_title3'],
1339 - 'description' => Loader::$labels['promotions']['woo']['spark_desc3'],
785 + 'title' => 'Advanced Product Review',
786 + 'description' => 'Enable an advanced review section, enlarging the basic review options with lots of capabilities.',
1340 787 'icon' => '<svg width="25" height="25" viewBox="0 0 60 61" fill="none" xmlns="http://www.w3.org/2000/SVG" aria-hidden="true"><path d="M58.75 54.1797H1.25C1.08584 54.1797 0.923271 54.1474 0.771595 54.0846C0.619919 54.0218 0.482103 53.9297 0.366021 53.8137C0.24994 53.6976 0.157867 53.5598 0.0950637 53.4081C0.0322604 53.2564 -4.26571e-05 53.0939 4.22759e-08 52.9297V6.67969C-4.26571e-05 6.51552 0.0322604 6.35296 0.0950637 6.20128C0.157867 6.04961 0.24994 5.91179 0.366021 5.79571C0.482103 5.67963 0.619919 5.58755 0.771595 5.52475C0.923271 5.46195 1.08584 5.42964 1.25 5.42969H58.75C58.9142 5.42964 59.0767 5.46195 59.2284 5.52475C59.3801 5.58755 59.5179 5.67963 59.634 5.79571C59.7501 5.91179 59.8421 6.04961 59.9049 6.20128C59.9677 6.35296 60 6.51552 60 6.67969V52.9297C60 53.0939 59.9677 53.2564 59.9049 53.4081C59.8421 53.5598 59.7501 53.6976 59.634 53.8137C59.5179 53.9297 59.3801 54.0218 59.2284 54.0846C59.0767 54.1474 58.9142 54.1797 58.75 54.1797ZM2.5 51.6797H57.5V7.92969H2.5V51.6797Z"></path><path d="M6.25 15.4297C6.94036 15.4297 7.5 14.87 7.5 14.1797C7.5 13.4893 6.94036 12.9297 6.25 12.9297C5.55964 12.9297 5 13.4893 5 14.1797C5 14.87 5.55964 15.4297 6.25 15.4297Z"></path><path d="M10 15.4297C10.6904 15.4297 11.25 14.87 11.25 14.1797C11.25 13.4893 10.6904 12.9297 10 12.9297C9.30964 12.9297 8.75 13.4893 8.75 14.1797C8.75 14.87 9.30964 15.4297 10 15.4297Z"></path><path d="M13.75 15.4297C14.4404 15.4297 15 14.87 15 14.1797C15 13.4893 14.4404 12.9297 13.75 12.9297C13.0596 12.9297 12.5 13.4893 12.5 14.1797C12.5 14.87 13.0596 15.4297 13.75 15.4297Z"></path><path d="M58.75 15.4297H18.75C18.4185 15.4297 18.1005 15.298 17.8661 15.0636C17.6317 14.8292 17.5 14.5112 17.5 14.1797C17.5 13.8482 17.6317 13.5302 17.8661 13.2958C18.1005 13.0614 18.4185 12.9297 18.75 12.9297H58.75C59.0815 12.9297 59.3995 13.0614 59.6339 13.2958C59.8683 13.5302 60 13.8482 60 14.1797C60 14.5112 59.8683 14.8292 59.6339 15.0636C59.3995 15.298 59.0815 15.4297 58.75 15.4297Z"></path><path d="M28.7502 37.9297C28.4187 37.9295 28.1009 37.7978 27.8664 37.5634L24.4289 34.1259C24.198 33.8908 24.0693 33.574 24.0708 33.2445C24.0723 32.915 24.2039 32.5994 24.4369 32.3664C24.6699 32.1334 24.9855 32.0018 25.315 32.0003C25.6445 31.9988 25.9613 32.1275 26.1964 32.3584L28.6977 34.8597L38.8588 23.4522C38.968 23.3296 39.1002 23.2298 39.2479 23.1583C39.3957 23.0869 39.5561 23.0452 39.7199 23.0358C39.8838 23.0263 40.0479 23.0492 40.2029 23.1032C40.3579 23.1571 40.5008 23.2411 40.6233 23.3503C40.7459 23.4594 40.8457 23.5917 40.9172 23.7394C40.9886 23.8872 41.0303 24.0476 41.0397 24.2114C41.0492 24.3753 41.0263 24.5394 40.9723 24.6944C40.9184 24.8494 40.8344 24.9922 40.7253 25.1148L29.6834 37.511C29.5702 37.6382 29.4322 37.7409 29.2779 37.8129C29.1237 37.8849 28.9563 37.9247 28.7862 37.9298L28.7502 37.9297Z"></path><path d="M29.977 44.1812C28.3217 44.1775 26.6876 43.8085 25.1912 43.1007C23.6948 42.3928 22.3731 41.3635 21.3203 40.0861C20.2675 38.8087 19.5095 37.3148 19.1004 35.7108C18.6913 34.1068 18.6413 32.4322 18.9537 30.8067C19.2662 29.1811 19.9335 27.6445 20.9081 26.3065C21.8827 24.9684 23.1406 23.862 24.592 23.0659C26.0433 22.2699 27.6525 21.804 29.3046 21.7013C30.9568 21.5987 32.6113 21.8619 34.15 22.4722C34.4579 22.5949 34.7044 22.8349 34.8354 23.1393C34.9663 23.4438 34.9709 23.7878 34.8482 24.0957C34.7255 24.4036 34.4856 24.6501 34.1811 24.7811C33.8766 24.912 33.5326 24.9166 33.2247 24.7939C31.44 24.0862 29.472 23.985 27.6241 24.5059C25.7762 25.0269 24.1508 26.141 22.9985 27.6767C21.8462 29.2124 21.2308 31.0844 21.2473 33.0043C21.2637 34.9242 21.9111 36.7854 23.0895 38.3011C24.268 39.8168 25.9122 40.903 27.7688 41.3922C29.6254 41.8813 31.5913 41.7464 33.3637 41.0082C35.136 40.27 36.6164 38.9694 37.5768 37.3069C38.5372 35.6444 38.9242 33.7122 38.6782 31.8081C38.6568 31.6451 38.6678 31.4795 38.7104 31.3208C38.7531 31.1621 38.8267 31.0133 38.927 30.8831C39.0272 30.7528 39.1522 30.6436 39.2947 30.5617C39.4373 30.4798 39.5945 30.4268 39.7575 30.4058C39.9206 30.3848 40.0861 30.3961 40.2448 30.4391C40.4034 30.4822 40.552 30.5561 40.682 30.6566C40.8121 30.7572 40.921 30.8824 41.0026 31.0251C41.0842 31.1678 41.1368 31.3252 41.1574 31.4883C41.3469 32.9535 41.2459 34.4417 40.8602 35.8679C40.4745 37.294 39.8116 38.6303 38.9094 39.8002C38.0072 40.9702 36.8834 41.9509 35.6021 42.6865C34.3208 43.4221 32.9071 43.898 31.4419 44.0872C30.9561 44.1494 30.4668 44.1807 29.977 44.1812Z"></path><defs><clip-path id="clip0"><rect width="60" height="60" fill="white" transform="translate(0 0.429688)"></rect></clip-path></defs></svg>',
1341 788 'link' => tsdk_utmify( 'https://themeisle.com/plugins/sparks-for-woocommerce/', 'promo', 'products-tabs' ),
1342 789 ),
1343 790 );
@@ -1350,11 +797,11 @@
1350 797 }
1351 798
1352 799 add_action(
1353 800 'woocommerce_product_data_tabs',
1354 - function ( $tabs ) {
801 + function( $tabs ) {
1355 802 $tabs['tisdk-suggestions'] = array(
1356 - 'label' => Loader::$labels['promotions']['woo']['title'],
803 + 'label' => 'More extensions from Themeisle',
1357 804 'target' => 'tisdk_suggestions',
1358 805 'class' => array(),
1359 806 'priority' => 1000,
1360 807 );
@@ -1372,9 +819,9 @@
1372 819 public function woocommerce_tab_content() {
1373 820 // Filter content based on if the key exists in $this->promotions array.
1374 821 $content = array_filter(
1375 822 $this->woo_promos,
1376 - function ( $key ) {
823 + function( $key ) {
1377 824 return in_array( $key, $this->promotions, true );
1378 825 },
1379 826 ARRAY_FILTER_USE_KEY
1380 827 );
@@ -1386,9 +833,9 @@
1386 833 ?>
1387 834
1388 835 <div id="tisdk_suggestions" class="panel woocommerce_options_panel hidden">
1389 836 <div class="tisdk-suggestions-header">
1390 - <h4><?php echo esc_html( Loader::$labels['promotions']['woo']['title2'] ); ?></h4>
837 + <h4>Recommended extensions</h4>
1391 838 </div>
1392 839 <div class="tisdk-suggestions-content">
1393 840 <?php foreach ( $content as $key => $item ) : ?>
1394 841 <div class="tisdk-suggestion" id="<?php echo esc_attr( $key ); ?>">
@@ -1402,13 +849,11 @@
1402 849 <p><?php echo esc_html( $item['description'] ); ?></p>
1403 850 </div>
1404 851 <div class="tisdk-suggestion-cta">
1405 852 <a href="<?php echo esc_url( $item['link'] ); ?>" target="blank" class="button">
1406 - <?php echo( ( isset( $item['has_install'] ) && $item['has_install'] ) ? esc_html( Loader::$labels['promotions']['woo']['cta_install'] ) : esc_html( Loader::$labels['promotions']['woo']['learn_more'] ) ); ?>
853 + <?php echo ( ( isset( $item['has_install'] ) && $item['has_install'] ) ? 'Install' : 'Learn More' ); ?>
1407 854 </a>
1408 - <a class="suggestion-dismiss"
1409 - title="<?php echo esc_attr( Loader::$labels['promotions']['woo']['dismiss'] ); ?>"
1410 - href="#"></a>
855 + <a class="suggestion-dismiss" title="Dismiss this suggestion" href="#"></a>
1411 856 </div>
1412 857 </div>
1413 858 <?php endforeach; ?>
1414 859 </div>
@@ -1427,29 +872,25 @@
1427 872 .tisdk-suggestions_options a {
1428 873 display: flex !important;
1429 874 align-items: center;
1430 875 }
1431 -
1432 876 .tisdk-suggestions_options a::before {
1433 877 content: url("data:image/svg+xml,%3Csvg fill='%23135e96' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='<?php echo esc_attr( $icon ); ?>'/%3E%3C/svg%3E") !important;
1434 878 min-width: 13px;
1435 879 max-width: 13px;
880 + margin: auto;
1436 881 }
1437 -
1438 882 .tisdk-suggestions_options.active a::before {
1439 883 content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='<?php echo esc_attr( $icon ); ?>'/%3E%3C/svg%3E") !important;
1440 884 }
1441 -
1442 885 .tisdk-suggestions-header {
1443 886 padding: 1em 1.5em;
1444 887 border-bottom: 1px solid #eee;
1445 888 }
1446 -
1447 889 .tisdk-suggestions-header h4 {
1448 890 font-size: 1.1em;
1449 891 margin: 0;
1450 892 }
1451 -
1452 893 .tisdk-suggestion {
1453 894 display: flex;
1454 895 align-items: center;
1455 896 flex-direction: row;
@@ -1454,9 +895,8 @@
1454 895 align-items: center;
1455 896 flex-direction: row;
1456 897 padding: 1em 1.5em;
1457 898 }
1458 -
1459 899 .tisdk-suggestion-icon {
1460 900 height: 40px;
1461 901 margin: 0;
1462 902 margin-right: 0px;
@@ -1468,21 +908,17 @@
1468 908 border-radius: 100%;
1469 909 align-items: center;
1470 910 padding: 5px;
1471 911 }
1472 -
1473 912 .tisdk-suggestion-icon svg {
1474 913 fill: #fff;
1475 914 }
1476 -
1477 915 .tisdk-suggestion-content {
1478 916 flex: 1 1 60%;
1479 917 }
1480 -
1481 918 .tisdk-suggestion-content h4 {
1482 919 margin: 0;
1483 920 }
1484 -
1485 921 .tisdk-suggestion-content p {
1486 922 margin: 0;
1487 923 margin-top: 4px;
1488 924 padding: 0;
@@ -1487,15 +923,13 @@
1487 923 margin-top: 4px;
1488 924 padding: 0;
1489 925 line-height: 1.5;
1490 926 }
1491 -
1492 927 .tisdk-suggestion-cta {
1493 928 flex: 1 1 30%;
1494 929 min-width: 160px;
1495 930 text-align: right;
1496 931 }
1497 -
1498 932 .tisdk-suggestion-cta .button {
1499 933 display: inline-block;
1500 934 min-width: 120px;
1501 935 text-align: center;
@@ -1500,9 +934,8 @@
1500 934 min-width: 120px;
1501 935 text-align: center;
1502 936 margin: 0;
1503 937 }
1504 -
1505 938 .tisdk-suggestion-cta .suggestion-dismiss {
1506 939 position: relative;
1507 940 top: 5px;
1508 941 right: auto;
@@ -1518,13 +951,13 @@
1518 951 */
1519 952 public static function render_notice_dismiss_ajax() {
1520 953 ?>
1521 954 <script>
1522 - jQuery(document).ready(function ($) {
955 + jQuery(document).ready(function($) {
1523 956 // AJAX request to update the option value
1524 - $('.tisdk-suggestion .suggestion-dismiss').click(function (e) {
957 + $( '.tisdk-suggestion .suggestion-dismiss' ).click(function(e) {
1525 958 e.preventDefault();
1526 - var suggestion = $(this).closest('.tisdk-suggestion');
959 + var suggestion = $(this).closest( '.tisdk-suggestion' );
1527 960 var value = suggestion.attr('id');
1528 961
1529 962 var nonce = '<?php echo esc_attr( wp_create_nonce( 'tisdk_update_option' ) ); ?>';
1530 963
@@ -1539,13 +972,13 @@
1539 972 complete() {
1540 973 suggestion.remove();
1541 974
1542 975 // If element with .tisdk-suggestions-content has no children, hide the whole panel. Skip if the selector doesn't exist.
1543 - if ($('.tisdk-suggestions-content').length && !$('.tisdk-suggestions-content').children().length) {
1544 - $('.tisdk-suggestions_options').remove();
1545 - $('#tisdk_suggestions').remove();
1546 - $('.general_options').addClass('active');
1547 - $('#general_product_data').css('display', 'block');
976 + if ( $( '.tisdk-suggestions-content' ).length && ! $( '.tisdk-suggestions-content' ).children().length ) {
977 + $( '.tisdk-suggestions_options' ).remove();
978 + $( '#tisdk_suggestions' ).remove();
979 + $( '.general_options' ).addClass( 'active' );
980 + $( '#general_product_data' ).css( 'display', 'block' );
1548 981 }
1549 982 }
1550 983 });
1551 984 });
@@ -1591,271 +1024,6 @@
1591 1024 );
1592 1025
1593 1026 wp_send_json( $response );
1594 1027 wp_die();
1595 - }
1596 -
1597 - /**
1598 - * Check if the user has a support page.
1599 - */
1600 - public function has_support_page() {
1601 - $page_title_matches = $this->get_page_title_keyword_matches();
1602 -
1603 - return 'yes' === $page_title_matches['support'];
1604 - }
1605 -
1606 - /**
1607 - * Check if the user has a donate page.
1608 - */
1609 - public function has_donate_page() {
1610 - $page_title_matches = $this->get_page_title_keyword_matches();
1611 -
1612 - return 'yes' === $page_title_matches['donate'];
1613 - }
1614 -
1615 - /**
1616 - * Check if the tagline or a published page title contains LMS related keywords.
1617 - *
1618 - * @return bool True if LMS-related keywords are found, false otherwise.
1619 - */
1620 - public function has_lms_tagline() {
1621 - $tagline = strtolower( get_bloginfo( 'description' ) );
1622 -
1623 - foreach ( $this->get_lms_keywords() as $keyword ) {
1624 - if ( $this->has_lms_keyword_match( $tagline, $keyword ) ) {
1625 - return true;
1626 - }
1627 - }
1628 -
1629 - return $this->has_lms_page_title();
1630 - }
1631 -
1632 - /**
1633 - * Check if a supported LMS plugin is active.
1634 - *
1635 - * @return bool True if an LMS plugin is active, false otherwise.
1636 - */
1637 - private function has_active_lms_plugin() {
1638 - if ( defined( 'MASTERIYO_VERSION' ) ) {
1639 - return true;
1640 - }
1641 -
1642 - include_once ABSPATH . 'wp-admin/includes/plugin.php';
1643 -
1644 - $lms_plugins = array(
1645 - 'tutor/tutor.php',
1646 - 'sfwd-lms/sfwd_lms.php',
1647 - 'lifterlms/lifterlms.php',
1648 - 'sensei-lms/sensei-lms.php',
1649 - 'learnpress/learnpress.php',
1650 - 'masterstudy-lms-learning-management-system/masterstudy-lms-learning-management-system.php',
1651 - 'learning-management-system/lms.php',
1652 - );
1653 -
1654 - foreach ( $lms_plugins as $plugin ) {
1655 - if ( is_plugin_active( $plugin ) || ( is_multisite() && is_plugin_active_for_network( $plugin ) ) ) {
1656 - return true;
1657 - }
1658 - }
1659 -
1660 - return false;
1661 - }
1662 -
1663 - /**
1664 - * Check if the current request can display a plugin install promo.
1665 - *
1666 - * @return bool True if a plugin install promo can be displayed, false otherwise.
1667 - */
1668 - private function can_check_plugin_install_promo() {
1669 - if ( ! is_admin() || ! current_user_can( 'install_plugins' ) ) {
1670 - return false;
1671 - }
1672 -
1673 - $current_screen = function_exists( 'get_current_screen' ) ? get_current_screen() : null;
1674 - if ( isset( $current_screen->id ) ) {
1675 - return $current_screen->id === 'plugin-install';
1676 - }
1677 -
1678 - global $pagenow;
1679 -
1680 - return isset( $pagenow ) && $pagenow === 'plugin-install.php';
1681 - }
1682 -
1683 - /**
1684 - * Check if a published page title contains LMS related keywords.
1685 - *
1686 - * @return bool True if an LMS-related page title is found, false otherwise.
1687 - */
1688 - private function has_lms_page_title() {
1689 - $lms_page_title_signal = get_transient( 'tisdk_lms_page_title_signal_v1' );
1690 -
1691 - if ( in_array( $lms_page_title_signal, array( 'yes', 'no' ), true ) ) {
1692 - return 'yes' === $lms_page_title_signal;
1693 - }
1694 -
1695 - $has_lms_page_title = $this->has_published_page_title_with_keywords( $this->get_lms_page_title_keywords() );
1696 -
1697 - set_transient( 'tisdk_lms_page_title_signal_v1', $has_lms_page_title ? 'yes' : 'no', 7 * DAY_IN_SECONDS );
1698 -
1699 - return $has_lms_page_title;
1700 - }
1701 -
1702 - /**
1703 - * Get cached keyword matches for published page titles.
1704 - *
1705 - * @return array Page title keyword matches.
1706 - */
1707 - private function get_page_title_keyword_matches() {
1708 - $default_matches = array(
1709 - 'support' => 'no',
1710 - 'donate' => 'no',
1711 - );
1712 -
1713 - $page_title_matches = get_transient( 'tisdk_page_title_signals_v1' );
1714 -
1715 - if ( is_array( $page_title_matches ) && empty( array_diff_key( $default_matches, $page_title_matches ) ) ) {
1716 - return array_merge( $default_matches, $page_title_matches );
1717 - }
1718 -
1719 - global $wpdb;
1720 -
1721 - $select_clauses = array();
1722 - $query_values = array();
1723 - $page_checks = $this->get_page_title_checks();
1724 -
1725 - foreach ( $page_checks as $match_key => $keywords ) {
1726 - $match_clauses = array();
1727 -
1728 - $query_values[] = 'page';
1729 - $query_values[] = 'publish';
1730 -
1731 - foreach ( $keywords as $keyword ) {
1732 - $match_clauses[] = 'post_title LIKE %s';
1733 - $query_values[] = '%' . $wpdb->esc_like( $keyword ) . '%';
1734 - }
1735 -
1736 - $select_clauses[] = 'EXISTS( SELECT 1 FROM ' . $wpdb->posts . ' WHERE post_type = %s AND post_status = %s AND ( ' . implode( ' OR ', $match_clauses ) . ' ) LIMIT 1 ) AS has_' . $match_key;
1737 - }
1738 -
1739 - // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
1740 - $query = $wpdb->get_row( //phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
1741 - $wpdb->prepare(
1742 - 'SELECT ' . implode( ', ', $select_clauses ),
1743 - $query_values
1744 - ),
1745 - ARRAY_A
1746 - );
1747 - // phpcs:enable WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
1748 -
1749 - $page_title_matches = $default_matches;
1750 -
1751 - if ( is_array( $query ) ) {
1752 - foreach ( array_keys( $page_checks ) as $match_key ) {
1753 - $page_title_matches[ $match_key ] = ! empty( $query[ 'has_' . $match_key ] ) ? 'yes' : 'no';
1754 - }
1755 - }
1756 -
1757 - set_transient( 'tisdk_page_title_signals_v1', $page_title_matches, 7 * DAY_IN_SECONDS );
1758 -
1759 - return $page_title_matches;
1760 - }
1761 -
1762 - /**
1763 - * Check if a keyword matches content.
1764 - *
1765 - * @param string $content Content to check.
1766 - * @param string $keyword Keyword to look for.
1767 - *
1768 - * @return bool True if the keyword matches, false otherwise.
1769 - */
1770 - private function has_lms_keyword_match( $content, $keyword ) {
1771 - if ( in_array( $keyword, array( 'lms', 'course', 'class' ), true ) ) {
1772 - return preg_match( '/(^|[^a-z0-9])' . preg_quote( $keyword, '/' ) . '([^a-z0-9]|$)/', $content ) === 1;
1773 - }
1774 -
1775 - return strpos( $content, $keyword ) !== false;
1776 - }
1777 -
1778 - /**
1779 - * Get LMS related keywords.
1780 - *
1781 - * @return array LMS related keywords.
1782 - */
1783 - private function get_lms_keywords() {
1784 - return array(
1785 - 'lms',
1786 - 'learning',
1787 - 'course',
1788 - 'courses',
1789 - 'academy',
1790 - 'training',
1791 - 'lesson',
1792 - 'lessons',
1793 - 'class',
1794 - 'classes',
1795 - 'student',
1796 - 'students',
1797 - 'teach',
1798 - 'teaching',
1799 - 'tutor',
1800 - 'quiz',
1801 - 'education',
1802 - 'online course',
1803 - 'online courses',
1804 - );
1805 - }
1806 -
1807 - /**
1808 - * Get LMS related keywords for page title matching.
1809 - *
1810 - * @return array LMS related keywords.
1811 - */
1812 - private function get_lms_page_title_keywords() {
1813 - return array_values( array_diff( $this->get_lms_keywords(), array( 'lms', 'course', 'class' ) ) );
1814 - }
1815 -
1816 - /**
1817 - * Check if a published page title contains any of the provided keywords.
1818 - *
1819 - * @param array $keywords Keywords to look for.
1820 - *
1821 - * @return bool True if a matching page title is found, false otherwise.
1822 - */
1823 - private function has_published_page_title_with_keywords( $keywords ) {
1824 - if ( empty( $keywords ) ) {
1825 - return false;
1826 - }
1827 -
1828 - global $wpdb;
1829 -
1830 - $query_values = array( 'page', 'publish' );
1831 - $clauses = array();
1832 -
1833 - foreach ( $keywords as $keyword ) {
1834 - $clauses[] = 'post_title LIKE %s';
1835 - $query_values[] = '%' . $wpdb->esc_like( $keyword ) . '%';
1836 - }
1837 -
1838 - // phpcs:disable WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
1839 - $page_title_match = $wpdb->get_var( //phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
1840 - $wpdb->prepare(
1841 - 'SELECT 1 FROM ' . $wpdb->posts . ' WHERE post_type = %s AND post_status = %s AND ( ' . implode( ' OR ', $clauses ) . ' ) LIMIT 1',
1842 - $query_values
1843 - )
1844 - );
1845 - // phpcs:enable WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.PreparedSQLPlaceholders.ReplacementsWrongNumber, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
1846 -
1847 - return ! empty( $page_title_match );
1848 - }
1849 -
1850 - /**
1851 - * Get page title keyword checks.
1852 - *
1853 - * @return array Page title keyword checks.
1854 - */
1855 - private function get_page_title_checks() {
1856 - return array(
1857 - 'support' => array( 'support' ),
1858 - 'donate' => array( 'donate' ),
1859 - );
1860 1028 }
1861 1029 }