Add skip/continue buttons back to wizard shipping step.

This commit is contained in:
Jeff Stieler 2017-05-28 18:10:40 -06:00 committed by Nabeel Sulieman
parent b52b38ecb0
commit 1492c50373
1 changed files with 5 additions and 0 deletions

View File

@ -597,6 +597,11 @@ class WC_Admin_Setup_Wizard {
</div>
</li>
</ul>
<p class="wc-setup-actions step">
<input type="submit" class="button-primary button button-large button-next" value="<?php esc_attr_e( 'Continue', 'woocommerce' ); ?>" name="save_step" />
<a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="button button-large button-next"><?php esc_html_e( 'Skip this step', 'woocommerce' ); ?></a>
<?php wp_nonce_field( 'wc-setup' ); ?>
</p>
</form>
<?php
}