Hello,
Please guide me where to add?
You could use the following Custom jQuery snippet to solve this issue:
jQuery(document).ready(function () {
if(jQuery(".ewd-urp-review-form")[0]){
if(jQuery(".woocommerce-breadcrumb").children('a').eq(1).text() == "Sports, Fitness & Outdoor"){
jQuery("input[name='Taste']").parent().hide();
jQuery("input[name='Quality']").parent().hide();
jQuery("input[name='Effectiveness']").parent().hide();
}
else if(jQuery(".woocommerce-breadcrumb").children('a').eq(1).text() == "Diet & Nutrition"){
jQuery("input[name='Comfort']").parent().hide();
jQuery("input[name='Sole Quality']").parent().hide();
jQuery("input[name='Fitting']").parent().hide();
}
}
});
You would need to place this code in your child theme's JavaScript file.
Thanks,
Dwaipayan
Looks correct