How to “remove” file from parent theme
The child theme could just delete the parent theme file if it exists (via child theme functions.php). eg. $template = get_template_directory().’/woocommerce.php’; if (file_exists($template)) {unlink($template);} That would continue to override it if it came to exist again (ie. after a parent theme update.) If you aren’t going to update the parent theme just delete it’s woocommerce.php … Read more