skip to Main Content

WordPress – Add icon uploader in custom tab of WooCommerce admin section

I wrote code to add a custom tab in the WooCommerce setting section page: add_filter('woocommerce_settings_tabs_array', array($this, 'my_custom_settings_tabs_array'), 99); add_action('woocommerce_settings_my_custom', array($this, 'action_woocommerce_settings_my_custom'), 10); add_action('woocommerce_settings_save_my_custom', array($this, 'action_woocommerce_settings_save_my_custom'), 10); I want to add an image uploader in my custom tab here public function…

VIEW QUESTION
Back To Top
Search