/* ------------------------------------------------------------ | AJAX: Load Products (ONLY zero stock) ------------------------------------------------------------ */ add_action('wp_ajax_c2n_load_products', function () { check_ajax_referer('c2n_ajax_nonce', 'nonce'); $search = sanitize_text_field($_POST['search'] ?? ''); $category = intval($_POST['category'] ?? 0); $args = [ 'post_type' => ['product'], 'posts_per_page' => -1, 'post_status' => 'publish', ]; /* Search */ if ($search) { $args['s'] = $search; } /* Category filter */ if ($category) { $args['tax_query'] = [ [ 'taxonomy' => 'product_cat', 'field' => 'term_id', 'terms' => $category ] ]; } $posts = get_posts($args); ob_start(); echo '
| ' . __('Product', 'car2nik-stock-manager') . ' | ' . __('Current Stock', 'car2nik-stock-manager') . ' | ' . __('New Qty', 'car2nik-stock-manager') . ' | |
|---|---|---|---|
| ' . esc_html($product->get_name()) . ' | ' . $stock . ' | ||
| ' . esc_html($product->get_name()) . ' (Variable) | - | - | |
| ' . esc_html($product->get_name()) . ' (Grouped) | - | - | |
| ' . __('No zero-stock items found', 'car2nik-stock-manager') . ' | |||
حساب کاربری ندارید؟
ایجاد یک حساب کاربری