Hello @seelenb,
You would be able to do so using a Custom jQuery snippet:
var categoriesToRemoveFromReviewForm = ["AAC ", "adsv Dynamica"];
for (var i = 0; i < categoriesToRemoveFromReviewForm.length; i++){
jQuery("#Product_Name option[value='" + categoriesToRemoveFromReviewForm[i] + "']").remove()
}
You need to input the exact value of the option in the categoriesToRemoveFromReviewForm string array, so for example, if I wanted to remove “Argo” from the dropdown, I would right click on the dropdown element, scroll through the code to find Argo’s option value, double click on the value and copy it. After that, I would add the value to the array like so:
var categoriesToRemoveFromReviewForm = ["AAC ", "adsv Dynamica", "Argo"];
You can paste the jQuery code in your child theme js file.