How to delete same modifier from multiple objects?

Is there a simple way to do it for hundreds objects?

Hi,
Maybe that could answer your question:

.I have this on and can’t find anything helpful for the issew. I see I can copy values to all selected so it works in certain cases . But still see no way to remove a single modifier

If the modifier name is the same on all objects, you can select them all and run

import bpy

modifier_name = "Bevel"

for ob in bpy.context.selected_objects :
    bpy.context.view_layer.objects.active = ob
    bpy.ops.object.modifier_remove(modifier=modifier_name)

with your modifier name instead of “Bevel”. This loops through all selected objects, sets them as active (prerequisite for calling the “remove modifier” operator which only works on the active object), and removes the modifier

2 Likes

Thank you very much. it works

1 Like

My pleasure
Please mark as “resolved” for tidiness

Thank you

Hadrien