Hi @need4wpspeed,
Sorry for the delay.
We have pushed a recent version, so please update before trying the following.
Please add the action hook to your child theme.
Following
// Replace {$field_ID} with your custom tab field id
// This changes tab title under tab content
add_action('wptp_tab_{$field_ID}', function($product) {
$a->title = '<span class="dashicons dashicons-dashboard"></span>' . $product->title;
});
// This is WC filter to customize tab title (tabs only).
add_filter('woocommerce_product_{$field_ID}_tab_title', function($title) {
return '<span class="dashicons dashicons-dashboard"></span>' . $title;
});
Please change the html to your needs and let us know.
Also please see the contextual help tabs on admin screen for Global Tab (view/edit screen) and Product screen (edit screen only) for more info.
Thanks
-
This reply was modified 7 years, 11 months ago by Wooninjas.
-
This reply was modified 7 years, 11 months ago by Wooninjas.