Forum Replies Created
-
AuthorPosts
-
akeith2002Member
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.
akeith2002MemberAny 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!
June 28, 2011 at 3:00 am in reply to: Execute custom function after registration of a specific level – API or Hooks? #33717akeith2002MemberI can’t express how top notch you guys are!
June 27, 2011 at 4:55 pm in reply to: Execute custom function after registration of a specific level – API or Hooks? #33715akeith2002MemberI am in the need for some sort of resolution immediately (as all jobs are!). Working on a freelance project and I am a little behind.
Thanks!
June 27, 2011 at 12:37 pm in reply to: Execute custom function after registration of a specific level – API or Hooks? #33714akeith2002Memberwow… why yes I think it will help. Is that something I will just copy and paste in or is it going to be in the next release? if so, when will that be released.
Thanks!!!!!
I didn’t expect a reply this fast and with someone willing to help me. I appreciate it.
-
AuthorPosts