1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
<?php
namespace Objectiv\Plugins\Checkout\Compatibility\Themes;
use Objectiv\Plugins\Checkout\Compatibility\CompatibilityAbstract;
class Avada extends CompatibilityAbstract { public function is_available(): bool { return defined( 'AVADA_VERSION' ); }
public function run() { // Avada 7.3+ fixes if ( version_compare( AVADA_VERSION, '7.3.0', '>=' ) ) { add_action( 'wp', function() { $this->checkout_page_fixes(); }, 100 ); }
// Avada 7.4 fixes if ( version_compare( AVADA_VERSION, '7.4.0', '>=' ) ) { add_action( 'wp_enqueue_scripts', array( $this, 'fix_avada_74' ), 100 ); }
// 7.3 and below fixes if ( version_compare( AVADA_VERSION, '7.4.0', '<' ) ) { $this->checkout_page_fixes();
add_action( 'wp_head', array( $this, 'cleanup_css' ), 0 ); add_action( 'wp_enqueue_scripts', array( $this, 'cleanup_css_new' ), 0 ); // latest Avada add_action( 'wp_body_open', array( $this, 'cleanup_css_new' ), 0 ); // latest Avada }
// All Versions For Now $this->disable_lazy_loading();
/** @var \Avada_Woocommerce */ global $avada_woocommerce;
if ( ! $avada_woocommerce ) { return; }
// Remove actions remove_action( 'woocommerce_after_checkout_form', array( $avada_woocommerce, 'after_checkout_form' ) ); remove_action( 'woocommerce_checkout_after_order_review', array( $avada_woocommerce, 'checkout_after_order_review' ), 20 ); remove_action( 'woocommerce_checkout_before_customer_details', array( $avada_woocommerce, 'checkout_before_customer_details' ) ); remove_action( 'woocommerce_checkout_after_customer_details', array( $avada_woocommerce, 'checkout_after_customer_details' ) ); remove_action( 'woocommerce_checkout_billing', array( $avada_woocommerce, 'checkout_billing' ), 20 ); remove_action( 'woocommerce_checkout_shipping', array( $avada_woocommerce, 'checkout_shipping' ), 20 ); }
public function checkout_page_fixes() { /** @var \Avada_Woocommerce */ global $avada_woocommerce;
if ( ! $avada_woocommerce ) { return; }
remove_action( 'woocommerce_before_checkout_form', array( $avada_woocommerce, 'avada_top_user_container' ), 1 ); remove_action( 'woocommerce_before_checkout_form', array( $avada_woocommerce, 'checkout_coupon_form' ), 10 ); remove_action( 'woocommerce_before_checkout_form', array( $avada_woocommerce, 'before_checkout_form' ), 10 ); }
public function fix_avada_74() {
/** @var \Fusion_Dynamic_CSS_Inline **/ $inline_instance = \Fusion_Dynamic_CSS::get_instance()->inline;
$loading_action = 'wp_head'; $priority = 999;
if ( fusion_should_defer_styles_loading() ) { $loading_action = 'wp_print_footer_scripts'; $priority = 12; }
if ( fusion_get_option( 'media_queries_async' ) ) { remove_action( 'wp_enqueue_scripts', array( $inline_instance, 'add_inline_css' ), 101 ); remove_action( $loading_action, array( $inline_instance, 'add_custom_css_to_wp_head' ), $priority ); } else { remove_action( $loading_action, array( $inline_instance, 'add_inline_css_wp_head' ), $priority ); } }
public function run_on_thankyou() { add_action( 'wp_head', array( $this, 'cleanup_css' ), 0 ); add_action( 'wp_enqueue_scripts', array( $this, 'cleanup_css_new' ), 0 ); // latest Avada add_action( 'wp_body_open', array( $this, 'cleanup_css_new' ), 0 ); // latest Avada
$this->disable_lazy_loading();
/** @var \Avada_Woocommerce */ global $avada_woocommerce;
if ( ! $avada_woocommerce ) { return; }
remove_action( 'woocommerce_thankyou', array( $avada_woocommerce, 'view_order' ), 20 ); remove_action( 'woocommerce_view_order', array( $avada_woocommerce, 'view_order' ) ); remove_action( 'woocommerce_thankyou', array( $avada_woocommerce, 'view_order' ) ); }
public function disable_lazy_loading() { if ( ! class_exists( '\\Fusion' ) ) { return; }
$fusion = \Fusion::get_instance(); remove_filter( 'wp_get_attachment_image_attributes', array( $fusion->images, 'lazy_load_attributes' ), 10 ); }
public function cleanup_css() { global $wp_filter;
$existing_hooks = $wp_filter['wp_head'];
if ( $existing_hooks[999] ) { foreach ( $existing_hooks[999] as $key => $callback ) { if ( false !== stripos( $key, 'add_inline_css_wp_head' ) ) { global $Fusion_Dynamic_CSS_File;
$Fusion_Dynamic_CSS_File = $callback['function'][0]; } } }
if ( empty( $Fusion_Dynamic_CSS_File ) ) { return; }
$action = \fusion_should_defer_styles_loading() ? 'wp_body_open' : 'wp_enqueue_scripts'; remove_action( $action, array( $Fusion_Dynamic_CSS_File, 'add_inline_css' ) ); remove_action( 'wp_head', array( $Fusion_Dynamic_CSS_File, 'add_custom_css_to_wp_head' ), 999 ); remove_action( 'wp_head', array( $Fusion_Dynamic_CSS_File, 'add_inline_css_wp_head' ), 999 ); }
public function cleanup_css_new() { global $wp_filter;
$existing_hooks = $wp_filter['wp_enqueue_scripts'];
if ( \fusion_should_defer_styles_loading() ) { $existing_hooks = $wp_filter['wp_body_open']; }
if ( $existing_hooks[11] ) { foreach ( $existing_hooks[11] as $key => $callback ) { if ( false !== stripos( $key, 'enqueue_dynamic_css' ) ) { global $Fusion_Dynamic_CSS_File;
$Fusion_Dynamic_CSS_File = $callback['function'][0]; } } }
if ( empty( $Fusion_Dynamic_CSS_File ) ) { return; }
remove_action( 'wp_enqueue_scripts', array( $Fusion_Dynamic_CSS_File, 'enqueue_dynamic_css' ), 11 ); } }
|