Last active
October 13, 2024 06:07
-
-
Save emre-edu-tech/c668943a5e9a261c04c99954cc662744 to your computer and use it in GitHub Desktop.
Woocommerce - Remove the tab titles on Single Product Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// REMOVE TAB TITLES ON SINGLE PRODUCT TEMPLATE | |
// Remove Description Title from Single Product Page Tabs | |
add_filter('woocommerce_product_description_heading', '__return_null'); | |
// Remove Additional Information Title from Single Product Page Tabs | |
add_filter('woocommerce_product_additional_information_heading', '__return_null'); | |
// Remove Reviews Title from Single Product Page Tabs | |
add_filter('woocommerce_reviews_title', '__return_null'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment