Hello and thanks for your reply.
I already add the code on your plugin, but the conflict remains. Here it is the code snippet. Can you tell me more about this?
Regards
Joao Coelho
/***********************************************************************
*
* Add custom functions below this comment
*
***********************************************************************/
/**
* Update the admin menu positon of LifterLMS courses to prevent conflicts
* @param array $data course post type registration data
* @return array
*/
function my_llms_course_positioning( $data ) {
$data[‘menu_position’] = 53;
return $data;
}
add_filter( ‘lifterlms_register_post_type_course’, ‘my_llms_course_positioning’ );
/***********************************************************************
*
* Add custom functions above this comment
*
***********************************************************************/