PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.7.7
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.7.7
1.7.7 1.7.6 1.7.5 1.7.4 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 All 33 releases
← All changes | modules/oauth/components/connect-pointer.php +5 -0 1.5.01.7.7 View file →
@@ -2,8 +2,9 @@
2 2
3 3 namespace ImageOptimization\Modules\Oauth\Components;
4 4
5 5 use ImageOptimization\Modules\Core\Components\Pointers;
6 +use ImageOptimization\Modules\Core\Module as Core_Module;
6 7
7 8 if ( ! defined( 'ABSPATH' ) ) {
8 9 exit; // Exit if accessed directly.
9 10 }
@@ -11,8 +12,12 @@
11 12 class Connect_Pointer {
12 13 const CURRENT_POINTER_SLUG = 'image-optimization-auth-connect';
13 14
14 15 public function admin_print_script() {
16 + if ( Core_Module::is_elementor_one() ) {
17 + return;
18 + }
19 +
15 20 if ( Connect::is_connected() ) {
16 21 return;
17 22 }
18 23