Osclass forums

Support forums => Themes => Modern => Topic started by: Adyyda on July 07, 2015, 10:44:03 am

Title: Login/Register form with placeholders
Post 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:

Code: [Select]
                                <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?
Title: Re: Login/Register form with placeholders
Post by: victormendes on September 25, 2015, 11:10:12 pm
Hello,

I am having the same problems, you managed to solve it?

Thx.
Title: Re: Login/Register form with placeholders
Post by: Adyyda on September 25, 2015, 11:14:03 pm
nope
Title: Re: Login/Register form with placeholders
Post by: cartagena68 on September 25, 2015, 11:54:57 pm
you can use jquery to add placeholder

Code: [Select]
<script type="text/javascript">
$("#ID OF FIELD").attr('placeholder', '<?php _e('YOUR PLACEHOLDER''bender'); ?>');
</script>
Title: Re: Login/Register form with placeholders
Post by: Adyyda on September 26, 2015, 12:06:15 am
And that will work in all browsers, desktop and mobile?
Title: Re: Login/Register form with placeholders
Post by: cartagena68 on September 26, 2015, 12:12:24 am
is working on chrome, firefox and edge, i don't knoe the others
Title: Re: Login/Register form with placeholders
Post by: Yarará Guazú on November 03, 2015, 01:12:01 am
cartagena68 please.
Where Must I to past this code?
Thank you in advance.
Title: Re: Login/Register form with placeholders
Post by: cartagena68 on November 03, 2015, 03:21:59 am
You can add it to the page where you need the placeholder or in footer.php
Title: Re: Login/Register form with placeholders
Post by: Yarará Guazú on November 03, 2015, 08:59:38 am
Thank you cartagena68