Forked from aliciaduffy/WordPress WooCommerce Use generic comments on WoodCommerce Products
Created
December 20, 2013 20:00
-
-
Save diekaines/8060500 to your computer and use it in GitHub Desktop.
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
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