how can i delete the button previous on multi page form ?
how can i delete the button previous on multi page form ?
You can't delete the previous button but you can hide it using CSS
body .gform_wrapper .gform_body .gform_page_footer .gform_previous_button {
display:none
}
or jQuery
<script>
$(document).ready(function(){
$('.gform_previous_button').hide();
});
</script>
Regards,
Richard
--
Just another member of the community helping out where I can
I usually suggest people go the CSS route as it is "better". :)
wonderfull thanks