• Resolved oliverhees

    (@oliverhees)


    Today we have found a bug.

    For a new client project we have install weforms and Learnpress.

    Bevor we install Learnpress WeForms is working fine. After install Learnpress the Pages from WeForms not visible.

    The WeForms Menu we can see, but the sides are all white.

    I tested it with a completely new installation and only installed WeForms and Learnpress and the result was the same.

    Does anyone have a solution?

Viewing 1 replies (of 1 total)
  • Hello @oliverhees,

    Please insert this snippet in your theme function.php file and save it.

    add_filter( 'learn-press/admin-default-scripts', 'rt_replace_js' );
    
    function rt_replace_js( $data ){
    
        $screen = get_current_screen();
        if ( $screen->base != 'toplevel_page_weforms' ) {
            return $data;
        }
        return array();
    }

    It should solve the issue you are facing with. Please let me know the updates ??

    Note: It’s good to have a backup before adding codes to a file. Please make sure you have taken a complete backup of your site.

    Best Regards

Viewing 1 replies (of 1 total)
  • The topic ‘[Bug] WeForms not working with Learnpress’ is closed to new replies.