How to include Custom Product Tabs
-
i have a custom Product Type in Woocommerce (Rental) which is showing normally on Woocommerce Add new Product Page. So for getting Custom Product Type used
add_filter( ‘wcfm_product_types’, function( $pro_types ) {
$pro_types[‘new_product’] = __( ‘New Product’, ‘woocommerce’ );
return $pro_types;
}, 50 );The product type is coming up but product custom tabs like Rental Pricing or Commission extra tab is not appearing. These are coming from an External Plugin.
I also looked into https://wclovers.com/forums/topic/add-custom-product-type/ but couldnt find any solution to this issue.
At last, I need the extra tabs to be appearing over the custom product type similar way it appears in Woocommerce New product. Please help ASAP.
It would be of great helpp
thanks
- The topic ‘How to include Custom Product Tabs’ is closed to new replies.