Skip to content
Snippets Groups Projects

WPdesk Dropshipping Mapper Stock Filter

  • Clone with SSH
  • Clone with HTTPS
  • Embed
  • Share
    The snippet can be accessed without any authentication.
    Authored by Krzysztof Dyszczyk
    dropshipping-woocommerce-mapper-stock-filter.php 212 B
    add_filter('wpdesk_dropshipping_mapper_stock', function( $value){
     if( $value === "a lot" ){
      return 99;
     }elseif( $value === "average" ){
      return 10;
     }elseif( $value === "low" ){
      return 1;
     }
    return 0;
    });
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment