Change select payment method text in GiveWP on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter('give_checkout_payment_method_text', 'new_payment_text');
function new_payment_text() {
return __('Choose your Payment Option', 'give');
}