Sep 25, 2010 ·
1 minute read
magento
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 is! Just run this query: INSERT INTO core_config_data (scope, scope_id, path, value) VALUES ('default', 0,
Read On →
Sep 10, 2010 ·
1 minute read
linux
This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub If you need to grep through some archived log files in gz format - don’t be extracting them and then using grep to search, just use zgrep to grep them directly.
Read On →
Sep 8, 2010 ·
1 minute read
magento
Pretty standard requirement - using product images in CMS sections, however you may find yourself including static HTML references to product images - and if you are using resized images then you might hardcode in links to cached images, which is obviously going to break at some point, or you painstakingly download copies of product images and reupload them for use in the CMS - but then they might go out of date.
Read On →
Sep 7, 2010 ·
1 minute read
magento
If you are struggling to understand why you are getting a popup on the Magento checkout with the simple message “undefined” then here is what you need to do. Use Fire Fox and install the extension Firebug Switch Firebug on and go to the console tab Hit the place order button and you will see the HTML response to the AJAX request (how did we cope with AJAX before Firebug!!) You should then see a meaningful error message telling you what is causing the problem and hopefully help you to fix it.
Sep 7, 2010 ·
1 minute read
open cart
This is post is now quite old and the the information it contains may be out of date or innacurate. If you find any errors or have any suggestions to update the information please let us know or create a pull request on GitHub At Edmonds Commerce we are always keeping a close eye on the latest and greatest ecommerce platforms available. For the majority of our clients we recommend Magento as we feel that it is an excellent platform for SME level businesses to work with.
Read On →
Sep 2, 2010 ·
1 minute read
magento
If you are working on a theme, you may find that there are hard coded links dotted all over the place. This can make testing a site offline (and thereby not on the same URL) a bit of a pain. Here is a quick fix for you: Remove all hard coded links from the CMS section: update cms_block set content = replace(content, 'http://www.domain.com/', '{{store url=''}}'); update cms_page set content = replace(content, 'http://www.domain.com/', '{{store url=''}}'); Remove all hard coded links from the theme files.
Read On →