add_action('woocommerce_single_product_summary', 'show_custom_sales_count', 11); function show_custom_sales_count() { global $product; // Lấy số lượng bán thực tế từ WooCommerce $real_sales = $product->get_total_sales(); // Cộng thêm 100 vào số lượng bán thực tế $fake_sales = $real_sales + 100; // Hiển thị số lượng bán echo '

' . sprintf(__('Đã bán: %d', 'text-domain'), $fake_sales) . '

'; }

Showing the single result