# sellkit/1.3.2/includes/elementor/modules/checkout/templates/form-checkout.php

SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster, version 1.3.2. 117 lines.

- Page: https://pluginprobe.com/plugins/sellkit/1.3.2/code/includes/elementor/modules/checkout/templates/form-checkout.php
- Raw: https://pluginprobe.com/plugins/sellkit/1.3.2/raw/includes/elementor/modules/checkout/templates/form-checkout.php
- Modified: 2022-10-31T08:54:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/sellkit/1.3.2/code/includes/elementor/modules/checkout/templates/form-checkout.php#L10-L20`.

```php
<?php
/**
 * Checkout Form
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/checkout/form-checkout.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce\Templates
 * @version 3.5.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

do_action( 'woocommerce_before_checkout_form', $checkout );
do_action( 'sellkit_checkout_one_page_express_methods' );

// If checkout registration is disabled and not logged in, the user cannot checkout.
if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) {
	echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) );
	return;
}

$extra_class = '';

if ( ! WC()->cart->needs_shipping() ) {
	$extra_class = 'sellkit-checkout-virtual-session';
}

?>

<form name="checkout" method="post" class="checkout woocommerce-checkout <?php echo esc_attr( $extra_class ); ?>" action="<?php echo esc_url( wc_get_checkout_url() ); ?>" enctype="multipart/form-data">
	<?php do_action( 'sellkit-checkout-widget-breadcrumb-desktop' ); ?>
	<?php
		/* multi step - step 1 */
		do_action( 'sellkit-checkout-step-a-begins' );
	?>
	<section class="sellkit-one-page-checkout-login">
		<?php wc_get_template( 'checkout/form-login.php' ); ?>

		<?php if ( $checkout->get_checkout_fields() ) : ?>

			<?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>

			<div id="customer_details">
				<?php do_action( 'woocommerce_checkout_shipping' ); ?>
			</div>
		<?php endif; ?>
	</section>

	<?php do_action( 'sellkit-checkout-step-a-ends' ); ?>

	<?php /* Multi step - step 2 */ ?>
	<?php do_action( 'sellkit-checkout-step-b-begins' ); ?>

		<section class="sellkit-one-page-shipping-methods">
			<?php if ( WC()->cart->needs_shipping() && WC()->cart->show_shipping() ) : ?>

				<?php do_action( 'woocommerce_review_order_before_shipping' ); ?>

					<?php wc_cart_totals_shipping_html(); ?>

				<?php do_action( 'woocommerce_review_order_after_shipping' ); ?>

			<?php endif; ?>
		</section>

		<?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>

	<?php do_action( 'sellkit-checkout-step-b-ends' ); ?>

	<?php /* multi step - step 3 */ ?>
	<?php do_action( 'sellkit-checkout-step-c-begins' ); ?>

	<?php do_action( 'woocommerce_checkout_billing' ); ?>
	<?php
		$order_button_text = apply_filters( 'sellkit-checkout-place-order-btn-text', __( 'Place Order', 'woocommerce' ) );
		require __DIR__ . '/payment-continue.php';
	?>
	<?php do_action( 'sellkit-checkout-step-c-ends' ); ?>

	<?php /** Multi-step sidebar */ ?>
	<?php do_action( 'sellkit-checkout-multistep-sidebar-begins' ); ?>

	<?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?>

	<?php do_action( 'woocommerce_checkout_before_order_review' ); ?>

	<div id="order_review" class="woocommerce-checkout-review-order">
		<?php do_action( 'sellkit-checkout-before-order-summary' ); ?>

		<?php do_action( 'sellkit-bundled-products-position' ); ?>

		<div id="sellkit-checkout-widget-order-review-wrap" >
			<h4 class="sellkit-checkout-order-review-heading header heading">
				<?php esc_html_e( 'Your order', 'woocommerce' ); ?>
			</h4>
			<?php do_action( 'woocommerce_checkout_order_review' ); ?>
		</div>
	</div>

	<?php do_action( 'woocommerce_checkout_after_order_review' ); ?>

	<?php do_action( 'sellkit-checkout-multistep-sidebar-ends' ); ?>

	<?php do_action( 'sellkit_checkout_required_hidden_fields' ); ?>
</form>

<?php do_action( 'woocommerce_after_checkout_form', $checkout ); ?>

```
