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
17 lines
1.1 KiB
PHP
17 lines
1.1 KiB
PHP
<?php
|
||
defined( 'ABSPATH' ) || exit;
|
||
if ( wc_get_page_id( 'shop' ) > 0 ) : ?>
|
||
<section class="cart">
|
||
<div class="cart-container container">
|
||
<h1>Корзина</h1>
|
||
<div class="cart-empty">
|
||
<h3>Ваша корзина пока пуста</h3>
|
||
<p>Воспользуйтесь каталогом или поиском, чтобы добавить товары в корзину и оформить заказ. Если у вас были товары в корзине – <a href="/login">войдите</a> в аккаунт.</p>
|
||
<a href="/catalog" class="cart-empty__link">
|
||
Перейти в каталог
|
||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.8242 4.44727L15.3767 8.99977L10.8242 13.5523" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/><path d="M2.625 9H15.2475" stroke="white" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
||
</a>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
<?php endif; ?>
|