If you would like to define pricing rules that are specific to variations, add this snippet:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Include variations in products rule | |
*/ | |
function prefix_search_products_method( $method, $args ) { | |
return 'woocommerce_json_search_products_and_variations'; | |
} | |
add_filter( 'wcfad_search_products_method', 'prefix_search_products_method', 10, 2 ); |