It would be really handy if we could change the text/label on the next and previous page buttons. I think it could either sit within the main Multipage group settings, or inside each Multipage below that.

The two current workarounds that I can see are:
1. Use string overrides.
2. Use field_group_ajaxified_multipage and a hook_form_alter maybe.

Comments

ultimike’s picture

I overrode the "Next page" and "Previous page" labels with a bit of custom jQuery in my theme:

(function($) {
Drupal.behaviors.MyProjectButtons = {
  attach: function (context, settings) {
    // Update the Prev/Next button labels
    $('.multipage-link-next').val('Next');
    $('.multipage-link-previous').val('Back');
  }
};
})(jQuery);

-mike

sime’s picture

Status: Active » Fixed

Outdated issue. User-land fix provided.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.