add_filter( 'woocommerce_product_add_to_cart_text', 'custom_oos_text', 10, 2 ); function custom_oos_text( $text, $product ) { if ( ! $product->is_in_stock() ) { $text = __( 'Select Options', 'woocommerce' ); } return $te