2015-07-10 69 views

回答

1

這裏是你將如何重新命名標籤(只需添加到您的主題functions.php文件):

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

    $tabs['description']['title'] = __('Features');  // Rename the description tab 
    $tabs['additional_information']['title'] = __('Specifications'); // Rename the additional information tab 

    return $tabs; 

} 
+0

謝謝你,這個工作完美。解決了這個問題.. –