Custom WooCommerce theme for orgsteklo.ru including: - Product catalog with category/subcategory hierarchy - Custom checkout with delivery calculation - Price calculator - Admin settings panel - Search functionality - User account pages
15 lines
386 B
PHP
15 lines
386 B
PHP
<!--
|
|
Template Name: Шаблон Оформление заказа
|
|
-->
|
|
<?php get_header(); ?>
|
|
<main>
|
|
<nav class="breadcumbs container">
|
|
<ul>
|
|
<li><a href="/">Главная</a></li>
|
|
<li><p class="breadcumbs-separator">/</p></li>
|
|
<li><p><?php echo the_title(); ?></p></li>
|
|
</ul>
|
|
</nav>
|
|
<?php echo do_shortcode('[woocommerce_checkout]'); ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|