• Hello, I have a problem,? I have a course on Learnpress.

    1. As always, I enter to LEARNPRESS > ORDERS >ADD NEW
    ?https://vimeo.com/668604979

    2. When I have the option of adding a user or multi-user, the button to ADD is not working, I click it and nothing.

    I updates plugin, changing administrator user, and nothing helped.

    Can you please help me somehow?

    Thanks a lot!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support brianvu-tp

    (@briantp)

    Hi,

    Please try to add this PHP code to function.php file of your child theme

    
    if(is_admin()){
        add_action('init','custom_abstract_assets_lp');
        function custom_abstract_assets_lp(){
            $asset = learn_press_admin_assets();
            remove_action('admin_enqueue_scripts', array( $asset, 'load_scripts' ) );
            remove_action( 'admin_print_footer_scripts', array( $asset, 'localize_printed_admin_scripts' ) );
    
            add_action('admin_enqueue_scripts', array( $asset, 'load_scripts' ) , 99 );
            add_action( 'admin_print_footer_scripts', array( $asset, 'localize_printed_admin_scripts' ) , 99 );
    
        }
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Learnpress new order not working’ is closed to new replies.