Thanks,
That’s not exactly the way I had imagined it. I did solve the issue, though. Non-static class, in the constructor, different hooks for different methods within the class. Such as
function __construct(){
add_action('hook1', 'method1');
add_action('hook2', 'method6');
add_action('hook3', 'method3');
}
Thanks for the help anyway ??