Tag Archives: php

Editing the Magento Navigation

Posted on 04. Sep, 2008 by Fido .

This is not a comprehensive example (I didn’t write out an example of editing the navigation myself … yet) – but I will point out where the files are that you need to edit the top and left navigation.

Continue Reading

Quick debugging tip

Posted on 03. Sep, 2008 by Fido .

You can add items to magento’s system log and exception log in your code. This is very handy for pin-pointing coding errors / problems. Developing for Magento is often hard, especially since it’s not always possibly to have error reporting on (and even when it is on, its hard to find exactly what’s wrong!).
Here’s an [...]

Continue Reading

Using PHP code on a CMS page (custom Block/module)

Posted on 02. Sep, 2008 by Fido .

If you have ever wanted to do some sort of PHP processing within a CMS page that you created, here is how you do it.
A limitation of this tutorials is form processing. That involves creating and/or extending and/or overriding a controller class (which I’ll save for another day).
This code will allow your code to accept arguments, making it handy for some sort of dynamic use!

Continue Reading