%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/themes/cwg/ |
Current File : //var/www/cwg/wp-content/themes/cwg/checkout.php |
<?php /** * The main template file * Template Name: Checkout * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package onepoint */ get_header(); ?> <!----Should be placed when there is no carousel--> <div class="js-headerGap h-[51px]"></div> <?php if (have_posts()) { while (have_posts()) { the_post(); ?> <section class="mt-[50px] mb-10 cwg-container-main"> <div class="text-[16px] leading-6 font-medium uppercase mb-[36px] pt-[24px]">Checkout</div> <div id="checkout"> <?php echo do_shortcode("[woocommerce_checkout]"); ?> </div> </section> <?php } } ?> <?php get_footer();