Last active
October 12, 2015 00:57
-
-
Save aliciaduffy/3946283 to your computer and use it in GitHub Desktop.
Use generic comments on WoodCommerce Products
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 | |
add_filter( 'comments_template', 'USEGENERIC_woocommerce_comments', 100); | |
function USEGENERIC_woocommerce_comments( $template ) { | |
$template = STYLESHEETPATH . '/comments.php'; | |
return $template; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment