Hello, Jimmy,
Could you please, check the possible result → https://prnt.sc/wmFusOqz6WFi
We added for you next code to child-theme/functions.php
add_action('wp', function() {
if ( class_exists('WooCommerce') ) {
if ( get_the_ID() == get_option('airwallex_payment_method_all_page_id') || wc_post_content_has_shortcode( 'airwallex_payment_method_all' ) ) {
set_query_var('et_is-checkout', true);
set_query_var('et_is-cart-checkout-advanced', get_theme_mod('cart_checkout_advanced_layout', false));
set_query_var( 'et_cart-checkout-layout', get_theme_mod( 'cart_checkout_layout_type', 'default' ) );
set_query_var( 'et_cart-checkout-header-builder', get_theme_mod( 'cart_checkout_header_builder', false ) );
set_query_var( 'et_cart-checkout-default-footer', get_theme_mod( 'cart_checkout_default_footer', false ) );
}
}
}, 50);
Kind Regards,
8theme team