Custom Tab don’t show up in backend
-
Hi, my Botiga-Themed shop contains a product-tab. I added a tab like this
` <?php add_filter( 'woocommerce_product_tabs', 'wpb_new_product_tab' ); function wpb_new_product_tab( $tabs ) { // Add the new tab $tabs['test_tab'] = array( 'title' => __( 'Example Tab', 'text-domain' ), 'priority' => 50, 'callback' => 'wpb_new_product_tab_content' ); return $tabs; } ?></code></pre>
The Tab appears on the frontend. But It is not accessibly in the backend. (Like the “Product Description” and the “Short Description”. How do I target this tab via the backend on the “Add Product” page?</p>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Custom Tab don’t show up in backend’ is closed to new replies.