If you ever need to remove the Tabs from Woocommerce then you can try the following code. add_filter( ‘woocommerce_product_data_tabs’, ‘custom_product_data_tabs’ ); function custom_product_data_tabs( $tabs ) { //unset( $tabs[‘general’] ); //unset( $tabs[‘inventory’] ); unset( $tabs[‘shipping’] ); unset( $tabs[‘linked_product’] ); unset( $tabs[‘attribute’] ); unset(
Read More
This Codes will create a form for the front-end users to collect data and store the data into a custom post. Shortcode is also made to use the form anywhere. 1. Create a custom post type: You can create a custom
Read More