• When I updated my WP-Members 3.2.2 my editor stop and does not work. It seems the upload and other functions is disabled on my wordpress editor. This solution works for me:

    From this code:

    $(document).ready(function() { 
           $('.wpmem-product-select2').select2();
    });

    change to this:

    jQuery.noConflict()(function ($) {
        $(document).ready(function() { 
    
           $('.wpmem-product-select2').select();
    
        });
    });

    Finally my site back to normal. I hope this helps to everyone having same issues with me.

    • This topic was modified 7 years, 10 months ago by rolyestemonio.

The topic ‘Javascript Problem WP-Members 3.2.2 Released’ is closed to new replies.