Geen omschrijving

form-checkout.php 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * Checkout Form
  4. *
  5. * This template can be overridden by copying it to yourtheme/woocommerce/checkout/form-checkout.php.
  6. *
  7. * HOWEVER, on occasion WooCommerce will need to update template files and you
  8. * (the theme developer) will need to copy the new files to your theme to
  9. * maintain compatibility. We try to do this as little as possible, but it does
  10. * happen. When this occurs the version of the template file will be bumped and
  11. * the readme will list any important changes.
  12. *
  13. * @see https://docs.woocommerce.com/document/template-structure/
  14. * @package WooCommerce\Templates
  15. * @version 3.5.0
  16. */
  17. if ( ! defined( 'ABSPATH' ) ) {
  18. exit;
  19. }
  20. do_action( 'woocommerce_before_checkout_form', $checkout );
  21. // If checkout registration is disabled and not logged in, the user cannot checkout.
  22. if ( ! $checkout->is_registration_enabled() && $checkout->is_registration_required() && ! is_user_logged_in() ) {
  23. echo esc_html( apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ) );
  24. return;
  25. }
  26. ?>
  27. <form name="checkout" method="post" class="checkout woocommerce-checkout" action="<?php echo esc_url( wc_get_checkout_url() ); ?>" enctype="multipart/form-data">
  28. <?php if ( $checkout->get_checkout_fields() ) : ?>
  29. <?php do_action( 'woocommerce_checkout_before_customer_details' ); ?>
  30. <div class="col2-set" id="customer_details">
  31. <div class="col-1">
  32. <?php do_action( 'woocommerce_checkout_billing' ); ?>
  33. </div>
  34. <div class="col-2">
  35. <?php do_action( 'woocommerce_checkout_shipping' ); ?>
  36. </div>
  37. </div>
  38. <?php do_action( 'woocommerce_checkout_after_customer_details' ); ?>
  39. <?php endif; ?>
  40. <?php do_action( 'woocommerce_checkout_before_order_review_heading' ); ?>
  41. <h3 id="order_review_heading"><?php esc_html_e( 'Your order', 'woocommerce' ); ?></h3>
  42. <?php do_action( 'woocommerce_checkout_before_order_review' ); ?>
  43. <div id="order_review" class="woocommerce-checkout-review-order">
  44. <?php do_action( 'woocommerce_checkout_order_review' ); ?>
  45. </div>
  46. <?php do_action( 'woocommerce_checkout_after_order_review' ); ?>
  47. </form>
  48. <?php do_action( 'woocommerce_after_checkout_form', $checkout ); ?>