1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
namespace Objectiv\Plugins\Checkout\Compatibility\Themes;
use Objectiv\Plugins\Checkout\Compatibility\CompatibilityAbstract;
class Zidane extends CompatibilityAbstract { public function is_available(): bool { return function_exists( 'zidane_framework' ); }
function run() { $zidane_framework = zidane_framework();
remove_action( 'wp_footer', array( $zidane_framework, 'init_javascript' ) ); } }
|