I’m trying to remove some of the buttons in the function.php of my child theme, but I don’t know how exactly i can achieve this goal using the ‘fep_menu_button’ hook.
I’ve tried it using the following line of code, but this approach is causing errors in the backend:
remove_action('fep_menu_button', array(fep_menu_class::init(), 'settings'));
Could you give me an example how I would use this hook to unhook a button?
Thanks