how to edit woocommerce category page code example
Example: edit woocommerce product page childthemee
function mytheme_add_woocommerce_support() {
add_theme_support( 'woocommerce' );
}
add_action( 'after_setup_theme', 'mytheme_add_woocommerce_support' );