2021-06-25 14:00:13 +02:00
|
|
|
<?php
|
2021-07-07 11:58:02 +02:00
|
|
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|