Have you got an idea how to remove actions or filters in Wordpress (from a plugin in my case) when those are defined like so:
add_action('action_tag', function(){...}); or add_filter('filter_tag', function(){...});
They are defined inside the function add_action or add_filter so I have no clue witch 'function_name' I should use to remove it.
remove_action($tag, what am I supposed to put in here?, $priority);