Archive: admin

 

Posts Tagged ‘admin’


Edmonds Commerce are hiring at the moment. PHP Job Leeds We are always looking to grow our team of Leeds based professional PHP Developers. If you are at or around the Zend Certified Developer level and think you would pass the exam given a little time and preparation then please get in touch. Administration Job [...]



 

A while ago we posted a technique for displaying template path hints in admin which involved running a couple of DB queries. That worked, but a nicer method is to create a custom module with some special XML config to get it configurable as standard. PLAIN TEXT CODE: <?xml version="1.0"?> <config>     <sections>   [...]



 

If you love template path hints in Magento for quickly figuring out which template file or block you need to edit or override and have a requirement for some admin side coding, you are going to love this. You might not have thought it was possible to enable template path hints in admin, but it [...]



 

If you upgrade to Magento version 1.4 and find that your admin totally stops working then this might be for you. If you view source and notice that your javascript paths are totally wrong then it could be that Merge JavaScript Files is causing it. The answer is: go to System -> Configuration -> Developer [...]



 

If you are having a weird problem with your payment modules not saving the configuration when you edit them via the admin, try this to see if it fixes it: in admin/modules.php find: PLAIN TEXT PHP: while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { and replace it with PLAIN TEXT PHP: //while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { [...]