Warning: This method has been deprecated.
WC_Admin_Setup_Wizard::setup_wizard_footer()
Setup Wizard Footer.
Description Description
Source Source
File: includes/admin/class-wc-admin-setup-wizard.php
public function setup_wizard_footer() { $current_step = $this->step; ?> <?php if ( 'new_onboarding' === $current_step || 'store-setup' === $current_step ) : ?> <a class="wc-setup-footer-links" href="<?php echo esc_url( admin_url() ); ?>"><?php esc_html_e( 'Not right now', 'woocommerce' ); ?></a> <?php elseif ( 'recommended' === $current_step || 'activate' === $current_step ) : ?> <a class="wc-setup-footer-links" href="<?php echo esc_url( $this->get_next_step_link() ); ?>"><?php esc_html_e( 'Skip this step', 'woocommerce' ); ?></a> <?php endif; ?> <?php do_action( 'woocommerce_setup_footer' ); ?> </body> </html> <?php }
Changelog Changelog
Version | Description |
---|---|
4.6.0 | Introduced. |