PluginProbe
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization / 2.5.5
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization v2.5.5
4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 2.5.5 2.5.6 2.5.7 3.0.0 3.0.1 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.11.0 3.11.1 3.11.2 3.11.3 3.12.0 3.12.1 All 134 releases
optimole-wp / inc / compatibilities / give_wp.php

give_wp.php in Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization 2.5.5, at inc/compatibilities/give_wp.php

60 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Class Optml_elementor_builder
5 *
6 * @reason Adding selectors for background lazyload
7 */
8 class Optml_give_wp extends Optml_compatibility {
9
10
11 /**
12 * Should we load the integration logic.
13 *
14 * @return bool Should we load.
15 */
16 function should_load() {
17 include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
18 return Optml_Main::instance()->admin->settings->use_lazyload() && is_plugin_active( 'give/give.php' );
19 }
20
21 /**
22 * Register integration details.
23 */
24 public function register() {
25
26 add_filter( 'optml_should_ignore_image_tags', [$this, 'check_givewp_page'], 10, 1 );
27
28 if ( Optml_Main::instance()->admin->settings->get( 'video_lazyload' ) === 'enabled' ) {
29 add_filter( 'optml_iframe_lazyload_flags', [$this, 'add_ignore_lazyload_iframe'] );
30 }
31 }
32 /**
33 * Add ignore page lazyload flag.
34 *
35 * @param bool $old_value Previous returned value.
36 *
37 * @return bool If we should lazyload the page.
38 */
39 public function check_givewp_page( $old_value ) {
40 if ( array_key_exists( 'giveDonationFormInIframe', $_GET ) && $_GET['giveDonationFormInIframe'] == '1' ) {
41 return true;
42 }
43 return $old_value;
44 }
45
46 /**
47 * Add ignore lazyload iframe flag.
48 *
49 * @param array $flags Old flags.
50 *
51 * @return array New flags.
52 */
53 public function add_ignore_lazyload_iframe( $flags = array() ) {
54 $flags[] = 'give-embed-form';
55 return $flags;
56 }
57
58 }
59
60