1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
namespace Objectiv\Plugins\Checkout\Compatibility\Themes;
use Objectiv\Plugins\Checkout\Compatibility\CompatibilityAbstract;
class Konte extends CompatibilityAbstract { public function is_available(): bool { return function_exists( 'konte_content_width' ); }
function run() { remove_action( 'woocommerce_before_checkout_form', 'Konte_WooCommerce_Template_Checkout::checkout_login_form', 10 ); } }
|