Hi There,
We’re sorry for the confusion. Please add this code on your child theme functions.php file.
// Do Not Remove Woocommerce Plugin Settings
// =============================================================================
function x_woocommerce_donot_remove_plugin_setting(){
if ( ! is_admin() ) {
return;
}
remove_filter( 'woocommerce_product_settings', 'x_woocommerce_remove_plugin_settings', 10
);
}
add_action('init', 'x_woocommerce_donot_remove_plugin_setting');
Those settings was remove by the theme because on previous Woocommerce version product page image is using theme image settings. Since Woocommerce 3.0, there’s a lot of changes and it is now back on using woocommerce settings. Those custom code will give you those settings back. Regenerate after.