Search features add in woccomerce soring

Search features add in woccomerce soring

Method 2: Sorting ke upar Search Box Add Karna (Theme me Code use karke)

Agar aap chahte hain ki sorting dropdown ke bilkul upar ya saath me search box aaye, to aap thoda PHP code add kar sakte hain:

🔧 Step-by-step (functions.php me code dalein):

  1. WordPress Dashboard > Appearance > Theme File Editor

  2. functions.php file me neeche wala code add karein:

// Add product search before sorting
add_action('woocommerce_before_shop_loop', 'add_custom_product_search', 15);
function add_custom_product_search() {
if (is_shop() || is_product_category() || is_product_tag()) {
echo '<div class="custom-product-search" style="margin-bottom: 20px;">';
get_product_search_form();
echo '</div>';
}
}

Leave a Reply