Osclass forums
Support forums => Themes => Modern => Topic started by: Adyyda on July 07, 2015, 10:44:03 am
-
Hello. I would like to change to login/register form so that it uses placeholders. Adding a placeholder is easy, we add it as placeholder="text for placeholder" but i am stuck because of this:
<label for="email"><?php _e('E-mail', 'modern') ; ?></label><br/>
<?php UserForm::email_login_text() ; ?><br/>
Right now, label gives the Title of the field and <?php UserForm::email_login_text() ; ?> gives the actual input area.
So how do we convert the initial code to one which uses placeholder, whithout any js as i have see on the forum?
-
Hello,
I am having the same problems, you managed to solve it?
Thx.
-
nope
-
you can use jquery to add placeholder
<script type="text/javascript">
$("#ID OF FIELD").attr('placeholder', '<?php _e('YOUR PLACEHOLDER', 'bender'); ?>');
</script>
-
And that will work in all browsers, desktop and mobile?
-
is working on chrome, firefox and edge, i don't knoe the others
-
cartagena68 please.
Where Must I to past this code?
Thank you in advance.
-
You can add it to the page where you need the placeholder or in footer.php
-
Thank you cartagena68