How to make registration tabs clickable
-
$default_steps = array( 'introduction' => array( 'name' => __('Introduction', 'wc-frontend-manager' ), 'view' => array($this, 'wcfmmp_store_setup_introduction'), 'handler' => '', ), 'store' => array( 'name' => __('Store', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_store'), 'handler' => array($this, 'wcfmmp_store_setup_store_save') ), 'payment' => array( 'name' => __('Payment', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_payment'), 'handler' => array($this, 'wcfmmp_store_setup_payment_save') ), 'policy' => array( 'name' => __('Policies', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_policy'), 'handler' => array($this, 'wcfmmp_store_setup_policy_save') ), 'support' => array( 'name' => __('Customer Support', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_customer_support'), 'handler' => array($this, 'wcfmmp_store_setup_customer_support_save') ), 'seo' => array( 'name' => __('SEO', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_seo'), 'handler' => array($this, 'wcfmmp_store_setup_seo_save') ), 'social' => array( 'name' => __('Social', 'wc-multivendor-marketplace'), 'view' => array($this, 'wcfmmp_store_setup_social'), 'handler' => array($this, 'wcfmmp_store_setup_social_save') ), 'next_steps' => array( 'name' => __('Ready!', 'wc-frontend-manager'), 'view' => array($this, 'wcfmmp_store_setup_ready'), 'handler' => '', ), );I want to put a link on the tabs so that the supplier can click on each one of them to review the registration itself, can you help me?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘How to make registration tabs clickable’ is closed to new replies.