Home › Forums › WoodMart support forum › Product Description Tab Product Description Tab This topic has 1 reply, 2 voices, and was last updated 6 years ago by Aizaz Imtiaz Awan. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts October 29, 2019 at 10:27 am #153128 jraudusParticipant Hi, Is there any way to change the product description tab so that it says “Product Description” not just “Description”? Attachments:You must be logged in to view attached files. October 29, 2019 at 12:47 pm #153164 Aizaz Imtiaz AwanKeymaster Hello, You can use the below code in your child theme funtions.php to change the name of the description tab to “Product Description”. add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs ) { $tabs['description']['title'] = __( 'Product Description' ); // Rename the description tab return $tabs; } Result: https://jmp.sh/njDRoiX Best Regards. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register