Joom v3 hikashop 2.1 beez_3 template
The login box at checkout is missing "Forgot Username" and "Forgot Password".
Either that or I have some icons missing or the class "icon-question-sign"
doesn't exist.
components/com_hikashop/views/checkout/tmpl/login_form.php
ORIGINAL..
<input id="modlgn-username" type="text" name="username" class="input-small" tabindex="1" size="18" placeholder="<?php echo JText::_('HIKA_USERNAME'); ?>" />
<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind');?>" class="btn hasTooltip" title="<?php echo JText::_('HIKA_FORGOT_YOUR_USERNAME'); ?>"><i class="icon-question-sign"></i></a>
SO I HACKED IT, BUT HACKING IS BAD .. same with password as below
<input id="modlgn-username" type="text" name="username" class="input-small" tabindex="1" size="18" placeholder="<?php echo JText::_('HIKA_USERNAME'); ?>" />
<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind');?>" class="btn hasTooltip" title="<?php echo JText::_('HIKA_FORGOT_YOUR_USERNAME'); ?>"><?php echo JText::_('HIKA_FORGOT_YOUR_USERNAME').'?'; ?><i class="icon-question-sign"></i></a>
rgds
emmdee