11 lines
367 B
Plaintext
11 lines
367 B
Plaintext
<?php
|
|
|
|
function materio_commerce_form_alter(&$form, &$form_state, $form_id) {
|
|
if ($form_id == 'commerce_checkout_flow_multistep_default') {
|
|
if ($form["#step_id"] == "review") {
|
|
$t="t";
|
|
// $form['buttons']['continue']['#value'] = t('Desired Custom Text Here');
|
|
$form['actions']['next']['#value'] = t('Place your order');
|
|
}
|
|
}
|
|
} |