Skip to content

Instantly share code, notes, and snippets.

@ozlemcimen
Last active December 4, 2017 14:53
Show Gist options
  • Save ozlemcimen/5c62f2b849522b9dbf55c9b019a3098b to your computer and use it in GitHub Desktop.
Save ozlemcimen/5c62f2b849522b9dbf55c9b019a3098b to your computer and use it in GitHub Desktop.
WooCommerce sayfalarında yorum sekmesini kaldırır.
<?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