Wordpress - image and file upload problem - (jQuery?)

I am using the eMember plugin on my website, it should display the downloadable profile file on the profile edit page. No bootloader, I only see the profile picture. I find this error in the console, but I'm not sure what it means. Can anyone help me?

Uncaught TypeError: $ (...). validationEngine is not a function (anonymous function) @? Emember_load_js = Profile & ID = wp_emember_profileUpdateForm: 65x.Callbacks.l @ jquery.min.js: 4x.Callbacks.c.fireWith @ jquery.min.js: 4x.extend.ready @ jquery.min.js: 4S @jquery. min.js: 4 (index): 259 WPP: OK. Execution time: 0.003635 seconds

+3


source to share


1 answer


From:

Uncaught TypeError: $ (...). validationEngine is not a function

It looks like the import of the validation engine plugin failed (this is a jQuery form validation plugin).

You can try to manually import it by downloading the zip from: https://github.com/posabsolute/jQuery-Validation-Engine/archive/master.zip

And then put these lines in the main js file, or in the file that contains this form (place them after the jQuery line and check if they point to src

the files you uploaded):



<script src="js/jquery.validationEngine-en.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.validationEngine.js" type="text/javascript" charset="utf-8"></script>

      

Place this next to another CSS import:

<link rel="stylesheet" href="css/validationEngine.jquery.css" type="text/css"/>

      

However, if you really think that this is caused by the eMember plugin, I think the authors can help you better (since this is a paid plugin and they seem to answer customers on this page or even through their contact page ).

+4


source







All Articles