Last active
December 4, 2017 14:53
-
-
Save ozlemcimen/5c62f2b849522b9dbf55c9b019a3098b to your computer and use it in GitHub Desktop.
WooCommerce sayfalarında yorum sekmesini kaldırır.
This file contains hidden or 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 | |
| function wolinka_remove_reviews_product_tabs( $tabs ) { | |
| unset( $tabs['reviews'] ); | |
| return $tabs; | |
| } | |
| add_filter( 'woocommerce_product_tabs', 'wolinka_remove_reviews_product_tabs', 98 ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment