There was a JavaScript conflict in the admin menu on your site. We were able to add a condition in the plugin to prevent this. Please check your site now.
Unable to Add Custom Fields
(14 posts) (3 voices)-
Posted 10 months ago #
-
All is well. Thank you very much for the support! Very much appreciated!
Posted 9 months ago # -
Any chance I can get this condition as well? I am having the same problem... I deactivated all plugins, tried the default theme. Nothing has worked. I, too, also have one custom field already created and cannot create another.
You think this is a conflict with the new jquery version?
This is the error I am getting:
$(this).attr("id") is undefined
[Break On This Error] var base_name = $(this).attr("id")in file: /wp-content/plugins/wp-eMember/js/jquery.dynamicField-1.0.js?ver=3.2.1
Thanks!
Posted 8 months ago # -
Ha! I just fixed the problem... it is an issue with the newer version of jQuery...
I added this to the functions file:
if ( is_admin() ){
function my_init_method2() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js');
wp_enqueue_script( 'jquery' );
}add_action('init', 'my_init_method2');
}So that it is now pulling in version 1.5.2. Any version over this and it will not allow the fields to be created.
Posted 8 months ago #
Reply
You must log in to post.