Add Custom Settings Tab to edit product page
-
Hi,
I used this code to add a new custom settings tab to the product edit page of woocommerce:add_filter('woocommerce_product_data_tabs', 'add_my_tab'); function add_my_tab($tabs) { $tabs['my_woo'] = array( 'label' => 'My tab', 'target' => 'my_woo_options', 'priority' => 90, ); return $tabs; }
How do I get it to show up on the product edit page in dokan?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add Custom Settings Tab to edit product page’ is closed to new replies.