• Resolved mikefishtank

    (@mikefishtank)


    Hi

    I can no longer search (in admin) for order numbers created before activating the plugin.

    I need to be able to search for both “types” of order numbers.

Viewing 1 replies (of 1 total)
  • Thread Starter mikefishtank

    (@mikefishtank)

    I have solved this…

    If you uncheck the setting in the plugin labelled ‘Enable order admin search by custom number‘ and then include this in your functions.php

    
    function woocommerce_shop_order_search_meta( $search_fields ) {
      $search_fields[] = '_alg_wc_custom_order_number';
      return $search_fields;
    }
    add_filter( 'woocommerce_shop_order_search_fields', 'woocommerce_shop_order_search_meta' );
    

    I would consider just including this in the plugin instead of the function currently within the plugin…

    
    search_by_custom_number()
    
Viewing 1 replies (of 1 total)
  • The topic ‘Search for previous order numbers’ is closed to new replies.