You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
like
this is the file
class-woothemes-our-team.php
around line 763The text was updated successfully, but these errors were encountered: