Jun 30, 2015 ·
2 minute read
Magento
We are seeing client sites running malicious code that is actively stealing customer details including card information on some sites
Read On →
Jun 24, 2015 ·
2 minute read
phpstorm
Improving coding standards with PHP Storm for Magento
Read On →
Jun 22, 2015 ·
1 minute read
Some times Magento has trouble displaying breadcrumbs for products, there is an override you can added that some times fixes this. Firstly, if you haven’t already. Create a new module if you don’t already have one in either your local or community directories under app/code. Create a new observer and assign it the event catalog_controller_product_init. With your observer ready to go, assign the event target to your method of choice on your observer and throw in some code public function updateBreadCrumb(Varien_Event_Observer $observer) { $current_product = Mage::registry('current_product'); if ($current_product) { $categories = $current_product->getCategoryCollection() ->addAttributeToSelect('name') ->setPageSize(1); foreach ($categories as $category) { Mage::unregister('current_category'); Mage::register('current_category', $category); } } } As the code removes and readds the registered categories it will force Magento to regenerate the breadcrumbs.
Read On →
Jun 18, 2015 ·
2 minute read
magento
A breakown of what you need to do to use Magento's new colour swatches in your custom theme
Read On →
Jun 17, 2015 ·
1 minute read
git
Removing untracked files but not git ignored ones
Read On →
Jun 15, 2015 ·
2 minute read
php
If you are having issues setting up your favourite IDE this may help
Read On →