has_custom_checkout()) {
return;
}
add_action('woocommerce_checkout_before_customer_details', function () {
global $ct_skip_checkout;
if ($ct_skip_checkout) {
return;
}
echo '
';
}, PHP_INT_MIN);
add_action('woocommerce_checkout_after_customer_details', function () {
global $ct_skip_checkout;
if ($ct_skip_checkout) {
return;
}
echo '
';
}, PHP_INT_MAX);
add_action('woocommerce_checkout_before_order_review_heading', function () {
global $ct_skip_checkout;
if ($ct_skip_checkout) {
return;
}
echo '';
}, PHP_INT_MIN);
add_action('woocommerce_checkout_after_order_review', function () {
global $ct_skip_checkout;
if ($ct_skip_checkout) {
return;
}
echo '
';
}, PHP_INT_MAX);
});
add_action(
'woocommerce_before_template_part',
function ($template_name, $template_path, $located, $args) {
if (! class_exists('Woocommerce_German_Market')) {
return;
}
if ($template_name !== 'checkout/form-checkout.php') {
return;
}
ob_start();
},
1,
4
);
add_action(
'woocommerce_after_template_part',
function ($template_name, $template_path, $located, $args) {
if (! class_exists('Woocommerce_German_Market')) {
return;
}
if ($template_name !== 'checkout/form-checkout.php') {
return;
}
$result = ob_get_clean();
$search = '/' . preg_quote('', '/') . '/';
echo preg_replace(
$search,
'
',
$result,
1
);
},
1,
4
);
add_action(
'woocommerce_before_template_part',
function ($template_name, $template_path, $located, $args) {
if ($template_name !== 'cart/cart-shipping.php') {
return;
}
ob_start();
},
1,
4
);
add_action(
'woocommerce_after_template_part',
function ($template_name, $template_path, $located, $args) {
if ($template_name !== 'cart/cart-shipping.php') {
return;
}
$result = ob_get_clean();
echo str_replace('td data-title', 'td colspan="2" data-title', $result);
},
1,
4
);
}
public function has_custom_checkout() {
$has_custom_checkout = true;
if (class_exists('FluidCheckout')) {
$has_custom_checkout = false;
}
if (class_exists('WFFN_Core')) {
$has_custom_checkout = false;
}
global $post;
if ($post && $post->post_type === 'cartflows_step') {
$has_custom_checkout = false;
}
$has_custom_checkout = apply_filters(
'blocksy:woocommerce:checkout:has-custom-markup',
$has_custom_checkout
);
return $has_custom_checkout;
}
}