Code-Snippets-Functions/Execute a function on a child site/WooCommerce/change-cheque-payment-gateway-title.txt

7 lines
277 B
Text

add_filter( 'woocommerce_gateway_title', 'change_cheque_payment_gateway_title', 100, 2 );
function change_cheque_payment_gateway_title( $title, $payment_id ){
if( $payment_id === 'cheque' ) {
$title = __("Something else", "woocommerce");
}
return $title;
}