Monthly Archives: July 2010

Magento: Adminhtml Template Fallback Bug

I discovered an interesting bug with the adminhtml templates today. When we deployed a site to the server, while trying to not deploy the media/ directory, we also left out the app/design/adminhtml/default/default/template/media/ directory. First sign that something was wrong was … Continue reading

Posted in Magento | 1 Comment

Google Apps & Webdav Calendar Urls

I have been using Google Calendar for a while for my personal calendars and have been using them through iCal. Google’s instructions on how to set that up is to use Webdav and to enter the following url: https://www.google.com/calendar/dav/[your Google … Continue reading

Posted in Google | Leave a comment

Magento Development: How to Best Use Google

I had a friend ask me today how to charge tax on shipping in Magento based on different rules than the rules they setup for their taxable goods. I actually wasn’t sure as I haven’t yet had a client that … Continue reading

Posted in Google, Magento | 1 Comment

Magento: Functionality Wish List Page

I decided that it was time to start keeping track of what missing functionality in Magento is most wanted. I created a new page (which you should see in the navigation under the header of the site) to start keeping … Continue reading

Posted in Magento | Leave a comment

Magento: Add Shipping Method to Sales Order Grid

If you want to add the shipping method to a column in your admin sales order grid, create a module to override app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php and add the following code to the _prepareColumns() method wherever you want the column to be: $this->addColumn(’shipping_description’, … Continue reading

Posted in Magento | 3 Comments

Magento: Manually Getting Magento Error Trace

I am working on a module right now that is supposed to email me the details of any errors that happen in Magento (errors that throw the Magento error screen, and output a trace of the error). Getting the error … Continue reading

Posted in Magento, PHP | 2 Comments

RSS Feed: New Feed for New Website

With the launch of the new website also comes the launch of a new RSS feed. For those of you who are subscribed to my old feed, please be sure to update it to the new. The link is now … Continue reading

Posted in My Website | Leave a comment

Magento: Importing Customer Street Addresses

One thing that you’ll notice if you export your customers out of Magento is that it combines the street1 and street2 columns into one for the shipping and billing addresses. The columns are called ‘billing_street_full’ and ‘shipping_street_full’. If you then … Continue reading

Posted in Magento | 1 Comment