drtduarte Posted December 28, 2012 Share Posted December 28, 2012 Hello, On search form the multilanguage funcionality for the text "Have a question? Start your search here." is missing: <div class="well"> <div class="textcenter"> <form method="post" action="knowledgebase.php?action=search" class="form-inline"> <fieldset class="control-group"> <input class="bigfield" name="search" type="text" value="Have a question? Start your search here." " onfocus="this.value=(this.value=='Have a question? Start your search here.') ? '' : this.value;" onblur="this.value=(this.value=='') ? 'Have a question? Start your search here.' : this.value;"/> <input type="submit" class="btn btn-large btn-primary" value="Buscar" /> </fieldset> </form> </div> </div> I found the following solution: <div class="well"> <div class="textcenter"> <form method="post" action="knowledgebase.php?action=search" class="form-inline"> <fieldset class="control-group"> <input class="bigfield" name="search" type="text" value="{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}" " onfocus="this.value=(this.value=='{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}') ? '' : this.value;" onblur="this.value=(this.value=='') ? '{if $searchterm}{$searchterm}{else}{$LANG.kbquestionsearchere}{/if}' : this.value;"/> <input type="submit" class="btn btn-large btn-primary" value="{$LANG.knowledgebasesearch}" /> </fieldset> </form> </div> </div> Regards, David D. 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted December 28, 2012 Author Share Posted December 28, 2012 Missing Lang String {$_LANG.every} on Default Template file clientareadomaindetails.tpl Replace: <p><h4><strong>{$LANG.recurringamount}:</strong></h4> {$recurringamount} Every {$registrationperiod} {$LANG.orderyears}{if $renew} <a href="cart.php?gid=renewals" class="btn btn-mini">{$LANG.domainsrenewnow}</a>{/if}</p> By: <p><h4><strong>{$LANG.recurringamount}:</strong></h4> {$recurringamount} {$LANG.every} {$registrationperiod} {$LANG.orderyears}{if $renew} <a href="cart.php?gid=renewals" class="btn btn-mini">{$LANG.domainsrenewnow}</a>{/if}</p> 0 Quote Link to comment Share on other sites More sharing options...
drtduarte Posted December 28, 2012 Author Share Posted December 28, 2012 Missing Lang String {$_LANG.clientareahostingaddonsintro} on Default Template file clientareaproductdetails.tpl Replace: <div class="internalpadding"> <div class="styled_title"><h2>{$LANG.clientareahostingaddons}</h2></div> <p>{$LANG.clientareahostingaddonsintro}</p> <br /> {if $addonsavailable}<p><a href="cart.php?gid=addons&pid={$id}">{$LANG.orderavailableaddons}</a></p>{/if} </div> By: <div class="internalpadding"> <div class="styled_title"><h2>{$LANG.clientareahostingaddons}</h2></div> <p>You have the following addons for this product.</p> <br /> {if $addonsavailable}<p><a href="cart.php?gid=addons&pid={$id}">{$LANG.orderavailableaddons}</a></p>{/if} </div> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.