Dealplazza - pop login language files
- Posted by Yilmaz (45) Offline
Cant find the language file of the poplogin module.
Whana change the Username; Password; remember me text´s
can anybody tell me where to find.
Thanks
11 years 5 months ago #1
by Yilmaz
Whana change the Username; Password; remember me text´s
can anybody tell me where to find.
Thanks
Please Log in or Create an account to join the conversation.
- Posted by andy (759) Offline
hi Ad,
Can open the file : [ROOT]/templates/deals_plazza/html/mod_poplogin/default.php then change the code arround lines 83-94
into this one:
then open this file :
[ROOT]/language/en-GB/en-GB.mod_poplogin.ini, then add these lines at the bottom of the file
11 years 5 months ago #2
by andy
Can open the file : [ROOT]/templates/deals_plazza/html/mod_poplogin/default.php then change the code arround lines 83-94
<?php echo JText::_('Username') ?></span>
<input id="username" type="text" name="username" class="inputbox" alt="username" size="12" autocomplete="off" />
</div>
<div class="tppoplogin">
<span><?php echo JText::_('Password') ?></span>
<input id="passwd" type="password" name="password" class="inputbox" size="18" alt="password" />
</div>
<?php if(JPluginHelper::isEnabled('system', 'remember')) : ?>
<div class="tppoploginremember">
<input id="modlgn_remember" type="checkbox" name="remember" value="yes" alt="Remember Me" />
<?php echo JText::_('Remember me') ?>
into this one:
<?php echo JText::_('JUSERNAME') ?></span>
<input id="username" type="text" name="username" class="inputbox" alt="username" size="12" autocomplete="off" />
</div>
<div class="tppoplogin">
<span><?php echo JText::_('JPASSWORD') ?></span>
<input id="passwd" type="password" name="password" class="inputbox" size="18" alt="password" />
</div>
<?php if(JPluginHelper::isEnabled('system', 'remember')) : ?>
<div class="tppoploginremember">
<input id="modlgn_remember" type="checkbox" name="remember" value="yes" alt="Remember Me" />
<?php echo JText::_('JREMEMBERME') ?>
then open this file :
[ROOT]/language/en-GB/en-GB.mod_poplogin.ini, then add these lines at the bottom of the file
JUSERNAME = "Custom Username"
JPASSWORD = "Custom Password"
JREMEMBERME = "Custom Remember"
Please Log in or Create an account to join the conversation.