<?php
// Thêm các hàm tùy chỉnh cho theme ở đây
add_action('after_setup_theme', 'db_stack_product_tabs');
function db_stack_product_tabs() {
// Loại bỏ các hành động mặc định liên quan đến hình ảnh và thông tin giảm giá
remove_action('woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10);
remove_action('woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10);
// Loại bỏ các tab thông tin sản phẩm mặc định
remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10);
// Thêm hành động để hiển thị tab tùy chỉnh
add_action('woocommerce_after_single_product_summary', 'db_get_tab_template_parts', 10);
}
function db_get_tab_template_parts() {
// Bao gồm các template parts cần thiết
?>
<div class="woo-description-section">
<?php wc_get_template('single-product/tabs/description.php'); ?>
</div>
<?php comments_template();
}