V
V
Vlad2016-10-17 18:58:47
WordPress
Vlad, 2016-10-17 18:58:47

How to open a tab in Woocommerce Wordpress?

Here is the patient expert-obzor.ru/product/xiaomi-redmi-3x
Please tell me how to make the tab (Tab) called "Characteristics" open by default?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Petrovsky, 2016-10-28
@Sc0undRel

just swap them

add_filter( 'woocommerce_product_tabs', 'woo_reorder_tabs', 98 );
function woo_reorder_tabs( $tabs ) {

  $tabs['reviews']['priority'] = 15;			// Reviews first
  $tabs['description']['priority'] = 10;			// Description second
  $tabs['additional_information']['priority'] = 5;	// Additional information third

  return $tabs;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question