From 60bcacea611538896fec2aeade2da2bdcddfec8a Mon Sep 17 00:00:00 2001 From: maksim Date: Tue, 24 Jun 2025 11:18:52 +0300 Subject: [PATCH] =?UTF-8?q?Task=206883=20|=20=D1=83=D0=B4=D0=B0=D0=BB?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BB=D0=B8=D1=88=D0=BD=D0=B8=D0=B9=20=D0=BD?= =?UTF-8?q?=D0=B5=D0=B8=D1=81=D0=BF=D0=BE=D0=BB=D1=8C=D0=B7=D1=83=D0=B5?= =?UTF-8?q?=D0=BC=D1=8B=D0=B9=20=D0=BA=D0=BE=D0=B4,=20=D1=80=D0=B0=D0=B7?= =?UTF-8?q?=D0=BD=D0=B5=D1=81=20=D0=BD=D0=B0=20=D0=BE=D1=82=D0=B4=D0=B5?= =?UTF-8?q?=D0=BB=D1=8C=D0=BD=D1=8B=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B?= =?UTF-8?q?=20=D0=BF=D0=BE=20=D0=B8=D1=85=20=D1=84=D1=83=D0=BD=D0=BA=D1=86?= =?UTF-8?q?=D0=B8=D0=BE=D0=BD=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE=D0=BC=D1=83=20?= =?UTF-8?q?=D0=BD=D0=B0=D0=B7=D0=BD=D0=B0=D1=87=D0=B5=D0=BD=D0=B8=D1=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../global-functions/core-functions.php | 254 ------------------ .../global-functions/post-types-functions.php | 25 ++ .../global-functions/redirect-functions.php | 16 ++ 3 files changed, 41 insertions(+), 254 deletions(-) delete mode 100644 wp-content/themes/cosmopet/global-functions/core-functions.php create mode 100644 wp-content/themes/cosmopet/global-functions/post-types-functions.php create mode 100644 wp-content/themes/cosmopet/global-functions/redirect-functions.php diff --git a/wp-content/themes/cosmopet/global-functions/core-functions.php b/wp-content/themes/cosmopet/global-functions/core-functions.php deleted file mode 100644 index bf7e684..0000000 --- a/wp-content/themes/cosmopet/global-functions/core-functions.php +++ /dev/null @@ -1,254 +0,0 @@ - array( - 'name' => 'Питомцы', // Основное название типа записи - 'singular_name' => 'Питомец', // отдельное название записи типа Book - 'add_new' => 'Добавить нового', - 'add_new_item' => 'Добавить нового питомца', - 'edit_item' => 'Редактировать питомца', - 'new_item' => 'Новый питомец', - 'view_item' => 'Посмотреть питомца', - 'search_items' => 'Найти питомца', - 'not_found' => 'Питомцев не найдено', - 'not_found_in_trash' => 'В корзине книг не найдено', - 'parent_item_colon' => '', - 'menu_name' => 'Питомцы' - - ), - 'public' => false, - 'show_ui' => true, - 'supports' => array('title','editor') -) ); -} - -function get_pet_card($item){ -?> - -
-
-
-
-
- -
-
- -

-
- -
-

:

-

-
-
-

:

-

-
- -
-

:

-

-
- - - -
-

:

-

-
- -
-

:

-

-
- -
-

- -
- -
- -
-
-
- admin_url('admin-ajax.php'), -// 'nonce' => wp_create_nonce('wc_checkout_nonce') -// ]); -// } -// } - -// // AJAX-обработчик для обновления количества -// add_action('wp_ajax_update_cart_quantity', 'update_cart_quantity_callback'); -// add_action('wp_ajax_nopriv_update_cart_quantity', 'update_cart_quantity_callback'); -// function update_cart_quantity_callback() { -// check_ajax_referer('wc_checkout_nonce', 'nonce'); - -// $cart_item_key = sanitize_text_field($_POST['cart_item_key']); -// $quantity = intval($_POST['quantity']); - -// if ($quantity > 0) { -// WC()->cart->set_quantity($cart_item_key, $quantity); -// } else { -// WC()->cart->remove_cart_item($cart_item_key); -// } - -// WC()->cart->calculate_totals(); - -// // Подготовка фрагментов -// $fragments = []; - -// // Обновление списка товаров -// ob_start(); -// wc_get_template('checkout/form-checkout.php', [], '', get_template_directory() . '/woocommerce/'); -// $fragments['.order-your__products'] = ob_get_clean(); - -// // Обновление секции итогов -// ob_start(); -// woocommerce_checkout_coupon_form(); -// woocommerce_order_review(); -// $fragments['.order-your__calculation'] = ob_get_clean(); - -// // Подготовка цен для каждого товара -// $item_prices = []; -// foreach (WC()->cart->get_cart() as $item_key => $item) { -// $item_prices[$item_key] = WC()->cart->get_product_subtotal($item['data'], $item['quantity']); -// } - -// wp_send_json_success([ -// 'fragments' => $fragments, -// 'item_prices' => $item_prices, -// 'cart_total' => WC()->cart->get_cart_total() -// ]); -// } - -// // AJAX-обработчик для удаления товара -// add_action('wp_ajax_remove_cart_item', 'remove_cart_item_callback'); -// add_action('wp_ajax_nopriv_remove_cart_item', 'remove_cart_item_callback'); -// function remove_cart_item_callback() { -// check_ajax_referer('wc_checkout_nonce', 'nonce'); - -// $cart_item_key = sanitize_text_field($_POST['cart_item_key']); -// WC()->cart->remove_cart_item($cart_item_key); -// WC()->cart->calculate_totals(); - -// // Подготовка фрагментов -// $fragments = []; - -// // Обновление списка товаров -// ob_start(); -// wc_get_template('checkout/form-checkout.php', [], '', get_template_directory() . '/woocommerce/'); -// $fragments['.order-your__products'] = ob_get_clean(); - -// // Обновление секции итогов -// ob_start(); -// woocommerce_checkout_coupon_form(); -// woocommerce_order_review(); -// $fragments['.order-your__calculation'] = ob_get_clean(); - -// wp_send_json_success([ -// 'fragments' => $fragments, -// 'cart_total' => WC()->cart->get_cart_total() -// ]); -// } - diff --git a/wp-content/themes/cosmopet/global-functions/post-types-functions.php b/wp-content/themes/cosmopet/global-functions/post-types-functions.php new file mode 100644 index 0000000..ce4d24f --- /dev/null +++ b/wp-content/themes/cosmopet/global-functions/post-types-functions.php @@ -0,0 +1,25 @@ + array( + 'name' => 'Питомцы', // Основное название типа записи + 'singular_name' => 'Питомец', // отдельное название записи типа Book + 'add_new' => 'Добавить нового', + 'add_new_item' => 'Добавить нового питомца', + 'edit_item' => 'Редактировать питомца', + 'new_item' => 'Новый питомец', + 'view_item' => 'Посмотреть питомца', + 'search_items' => 'Найти питомца', + 'not_found' => 'Питомцев не найдено', + 'not_found_in_trash' => 'В корзине книг не найдено', + 'parent_item_colon' => '', + 'menu_name' => 'Питомцы' + + ), + 'public' => false, + 'show_ui' => true, + 'supports' => array('title','editor') +) ); +} \ No newline at end of file diff --git a/wp-content/themes/cosmopet/global-functions/redirect-functions.php b/wp-content/themes/cosmopet/global-functions/redirect-functions.php new file mode 100644 index 0000000..522709a --- /dev/null +++ b/wp-content/themes/cosmopet/global-functions/redirect-functions.php @@ -0,0 +1,16 @@ +