button display on condition woocommerce
<script>
jQuery(document).ready(function($){
if ( $( '#step-1' ).hasClass( 'active' ) ) {
$( '.button-prev' ).hide();
}
$("#action-next").click(function(){
$( '.button-prev' ).show();
if ( $( '#step-3' ).hasClass( 'active' ) ) {
$( '.button-next' ).hide();
} else {
$( '.button-next' ).show();
}
});
$("#action-prev").click(function(){
$( '.button-next' ).show();
if ( $( '#step-1' ).hasClass( 'active' ) ) {
$( '.button-prev' ).hide();
}
});
});
</script>