Friday, April 25, 2014

To make telephone number field box only accept number

catalog/view/javascript/common.js
add this function in the bottom file

function isNumberKey(evt) {
   var charCode = (evt.which) ? evt.which : event.keyCode
   if (charCode > 31 && (charCode < 48 || charCode > 57)) {
      return false;
   } else {
      return true;
   }
}
 
catalog/view/theme/default/template/account/register.tpl

<input type="text" name="telephone" onkeypress="return isNumberKey(event)" value="<?php echo $telephone; ?>" size="32"/>

Thanks to : avvici -arvixe-

Tuesday, April 22, 2014

It takes a long time to login to administration

If you ever feel it takes to long to login to your opencart administrator,  just do this :

Turn off Auto Update Currency, in System->Settings->Local


Trust me, it works.