Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter varesi

    (@varesi)

    @gabelivan thanks for your reply.

    I already deactivate both the plugins. I even delete asset cleanup and what happened is that I can not see the images in the wp admin area. The JS code I think it comes from Divi as it won′t inject the footer. The best for now is to raise a ticket to Divi and lets see what they say.

    PS: I disabled lay loading and results are the same.

    Thread Starter varesi

    (@varesi)

    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
    *
    ***********************************************************************/

Viewing 2 replies - 1 through 2 (of 2 total)