Emps-World Forum
Emps-World => Bug Reports => Resolved Bug Reports => Topic started by: Eliminator on May 06, 2015, 11:09:24 pm
-
I was posting a ticket (proxy ticket) for a user and I had to go and set the field manually.
(http://i.imgur.com/tTnjQGs.png)
(http://i.imgur.com/BRsIPiX.png)
-
Probably an issue with the bright forest theme, it's working fine on the default one.
-
Thomy,
It only does not display it if you click post without a username in the username box. Try that and it might produce the issue!
Thanks!
Austen
(http://i.imgur.com/TmTaeHd.png)
-
I did further investigating here is the issue.
working
<div class="information shd_customfields" id="shd_customfields">
<div id="field_1_container">
<dl class="settings">
<dt id="field-1">
<strong>Username: </strong><br>
<span class="smalltext">Which account are you talking about?</span>
</dt>
<dd><input type="text" name="field-1" value="" class="input_text"></dd>
</dl>
<hr class="hrcolor">
</div>
</div>
working end
not working
<div class="information shd_customfields" id="shd_customfields">
<div id="field_1_container" style="display:none;">
<dl class="settings">
<dt id="field-1">
<strong>Username: </strong><br>
<span class="smalltext">Which account are you talking about?</span>
</dt>
<dd><input type="text" name="field-1" value="" class="input_text"></dd>
</dl>
<hr class="hrcolor">
</div>
</div>
Not working end
Fix --> style="display:none;"
needs to be removed