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 | |
// Check for 'Hire' category for single product. | |
add_filter( 'dcwd_single_product_availability_text', 'dcwd_single_product_availability_check', 10, 2 ); | |
function dcwd_single_product_availability_check( $availability_text, $product ) { | |
if ( has_term( array( 'hire' ), 'product_cat', $product->get_id() ) ) { | |
return 'Unavailable'; | |
} | |
else { | |
return 'Sold'; |