techlab/jquery-smartwizard

unable to hide previous and next button...

sandy15d opened this issue · 1 comments

$('#smartwizard').smartWizard({
selected: 0,
theme: 'default',
autoAdjustHeight:true,
transition: {
animation: 'slide-horizontal', // Effect on navigation, none/fade/slide-horizontal/slide-vertical/slide-swing
},
toolbarSettings: {
toolbarPosition: 'none',
}
});

Please try the options showNextButton and showPreviousButton

$('#smartwizard').smartWizard({
    toolbar: {
      showNextButton: false, // show/hide a Next button
      showPreviousButton: false // show/hide a Previous button
    }
});