Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Javascript broken when adding/editing team member #66

Open
angelo-moreira opened this issue Sep 1, 2015 · 1 comment
Open

Javascript broken when adding/editing team member #66

angelo-moreira opened this issue Sep 1, 2015 · 1 comment
Labels

Comments

@angelo-moreira
Copy link

JS seems to be broken when editing/adding a team member, cannot click the help tab.
After debugging for a bit I came across to a comment that pointed to wrap

                    // Unset #user_id if #user_search is emptied
                        if ( jQuery(this).val().length == 0 ) {
                            jQuery( "#user_id" ).val( 0 );
                        }

like

                    // Unset #user_id if #user_search is emptied
                    jQuery( '#user_search' ).blur(function() {
                        if ( jQuery(this).val().length == 0 ) {
                            jQuery( "#user_id" ).val( 0 );
                        }
                    });

this is the file class-woothemes-our-team.php around line 763

@pawelkmpt
Copy link

@angelo-moreira look at #51 and #48

@mattyza mattyza added the bug label Aug 24, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants