I have to remove some of wplms actions in my child theme (e.g. vibe_view_woocommerce_order_course_details). I already tried something like this (remove course links on order recieved woocommerce page)
add_action('bp_after_setup_theme','removeVibeAction', 0);
function removeVibeAction() {
remove_action('woocommerce_order_item_name', array('WPLMS_Actions', 'vibe_view_woocommerce_order_course_details'));
}
and could you please add how to deal with other WPLMS actions as well? I have to remove a lot of them.