kreamweb
10/28/2016 - 7:34 AM

[Request a quote] This code hide the button request a quote if a product is out of stock.

[Request a quote] This code hide the button request a quote if a product is out of stock.

<?php 

if ( class_exists( 'YITH_YWRAQ_Frontend' ) ) {
	add_filter( 'yith_ywraq_before_print_button', 'yith_ywraq_hide_button_out_of_stock', 10, 2 );
	function yith_ywraq_hide_button_out_of_stock( $return, $product ) {

		if ( ! $product->is_in_stock() ) {
			return false;
		}

		return $return;
	}
}