Answer the question
In order to leave comments, you need to log in
How to make the tabs in the Woo product card displayed depending on the category?
There is a code with which we add tabs to the product card on woocommerce.
There he is:
add_filter( 'woocommerce_product_tabs', 'truemisha3_new_product_tab', 26 );
function truemisha3_new_product_tab( $tabs ) {
$tabs[ 'new_vonros_tab' ] = array(
'title' => 'Вопрос',
'priority' => 26,
'callback' => 'truemisha3_new_tab_content'
);
return $tabs;
}
function truemisha3_new_tab_content() {
echo '<p>Тест-тест</p>';
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question