[Woocommerce] How to Reorder Tab Position


function wc_reorder_tabs( $tabs ) {

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

return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'wc_reorder_tabs', 99 );

Related Posts

How to link WP Domain Checker Buy Button to Contact Form 7

Is it possible to link WP Domain Checker Buy Button / Purchase Button to Contact Form 7? This is a question from one of WP Domain Checker user. The answer is YES. It is possible! We can use HTTP GET variables feature from Contact Form 7. To get the default value from HTTP GET variables, add default:get option to […]

Read More

Recommended File Permissions for WordPress

July 31, 2017

Security, Tutorial, WordPress

What permissions should I have for the following: Root folder storing all the WordPress content wp-admin wp-content wp-includes On computer filesystems, different files and directories have permissions that specify who and what can read, write, modify and access them. This is important because WordPress may need access to write to files in your wp-content directory to enable certain functions. […]

Read More