Change select payment method text in GiveWP

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');
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.