add_action('wp', function() { if (is_product()) { global $product; // Check if the product has a price if ($product && $product->get_price()) { // Ensure this action corresponds to how the "Request Price" button is added remove_action('woocommerce_single_product_summary', 'your_request_price_button_function', 20); } } }); // Example: Remove or replace the actual request price button function function your_request_price_button_function() { echo ''; }