0

add_filter( 'gettext', 'wpdocs_change_login_form_register_keyword' );
function wpdocs_change_login_form_register_keyword( $text ) {
  if ( is_checkout() ) {
    $text = str_replace( 'Deposit', 'Payment Plan', $text );
  }
    return $text;
}

Jagdish Sarma Asked question July 8, 2024
Add a Comment