I’ve been trying to replace an action to create a new custom meta field type. It works fine, but I’m not able to remove the original action using the following code:
remove_action(‘tribe_settings_after_content_tab_additional-fields’, array(‘TribeEventsCustomMeta’, ‘event_meta_options’), 10);
If I put this in functions.php or my own plugin, it has no effect. It does work if I place it in the TribeEventsCustomMeta init function, but I don’t want to do that for obvious reasons. Any advice?