Created
January 28, 2016 08:54
-
-
Save kreamweb/3962bdbe4c12efe0b648 to your computer and use it in GitHub Desktop.
Keep list in YITH WooCommerce Request a Quote after sent the request
This file contains hidden or 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 | |
if( defined( 'YITH_YWRAQ_PREMIUM' ) ){ | |
add_filter( 'ywraq_clear_list_after_send_quote', 'ywraq_clear_list_after_send_quote', 10, 2); | |
function ywraq_clear_list_after_send_quote( $clear, $raq ){ | |
return false; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment