Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Hi,

    update to new version v1.1.4 (we have just releasedit)

    the below code is to hide the calculator for the variable product, you can modify it to hide it or show it for your custom product type of Auction product

    (the below code will go in your theme functions.php file)

    
    add_filter('pi_ppscw_hide_calculator_on_single_product_page', function($ret, $product){
    	if($product->is_type('variable')) return true;
    
    	return $ret;
    },10,2);
    
    Thread Starter handmadehome

    (@handmadehome)

    Beyond perfect now! Thank you so much!

    Plugin Author rajeshsingh520

    (@rajeshsingh520)

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Availability by product type’ is closed to new replies.