• Hi, When using this plugin I get on mobile phone the message “undefined” above and below the fields Username – Password. I use Version: 3.1.6 but same result with older version 3.1.5.
    The text Username and Password are correct shown.
    It happens only on mobile phones.

    How can I solve this?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Can you post a screenshot of what you’re seeing? I’m not sure I follow 100%. Thanks.

    Thread Starter RonaldS

    (@norus)

    Sure I can. Here it is:
    mobile login screenshot
    https://prntscr.com/cx64f4

    • This reply was modified 8 years, 5 months ago by RonaldS.
    • This reply was modified 8 years, 5 months ago by RonaldS.

    It’s possible this is a conflict caused by your theme or another plugin. To check if it is, can you test with all other plugins deactivated and while running the default WordPress theme?

    Thread Starter RonaldS

    (@norus)

    Problem is solved. I included your plugin within my plugin. My .js file had a wrong
    old code:

    for (var h = 0, tbody; tbody = tablebody[h]; h++) {
    	headertext[h]= [];
    	for (var i = 0, row; row = tbody.rows[i]; i++) {
    	  for (var j = 0, col; col = row.cells[j]; j++) {
    	    col.setAttribute("data-th", headertext[h][j]);
    	  } 
    	}
    } 

    New code:

    for (var h = 0, tbody; tbody = tablebody[h]; h++) {
    	headertext[h]= [];
    	for (var i = 0, row; row = tbody.rows[i]; i++) {
    	  for (var j = 0, col; col = row.cells[j]; j++) {
    	  	if ( typeof headertext[h][j] !=='undefined') {
    	  		col.setAttribute("data-th", headertext[h][j]);
    	  	}
    	  } 
    	}
    } 

    Thanks for your replies.

    • This reply was modified 8 years, 4 months ago by RonaldS.
    • This reply was modified 8 years, 4 months ago by RonaldS.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘“undefined” message with login on Mobile phones’ is closed to new replies.