XF 2.2 _xfClientLoadTime showing below footer

AndyB

Well-known member
Why would this show below the footer?

1605545824291.webp

Looking at the helper_js_global template, this should not show.

Code:
	<form style="display:none" hidden="hidden">
		<input type="text" name="_xfClientLoadTime" value="" id="_xfClientLoadTime" title="_xfClientLoadTime" tabindex="-1" />
	</form>
 
You would have to inspect the DOM using the browser dev tools to see if there is anything that is breaking the HTML output or overriding the CSS that should be hiding it.
 
That's the browser console. Not the DOM.

Perhaps your strict browser settings on that site are affecting it but I'd still recommend inspecting the elements to see which CSS is being applied.
 
@AndyB have a look at this form which I can see in the source of the page:

HTML:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">

Someone seems to have added it to facilitate PayPal donations on the page.

There's no closing tag so it seems to completely break the hidden form around the input.
 
Now that's weird. Periodically when I go to log into the ACP, LastPass autofills the field with something that looks a lot like that. I always wondered where that was co ing from.
 
Top Bottom