Category Archives: Magento bugs and fixes

Magento bugs and fixesMagento CDNMagento designMagento ExtensionsMagento SecuritySpeed up Magento
Blank Image

Upgrade from Magento 1 to Magento 2

The time has come to upgrade your Magento 1.9 website.   Your Magento 1.9.x.x sites are already vulnerable to hackers, delaying will only leave you more exposed once the June 2020 deadline has passed. Migrating your Magento site is more than possible, every site is different and therefore we need to speak with you to […]...
Magento bugs and fixes
Blank Image

Magento sends order emails to more than one customer. Bug Fix

Is your Magento site sending order emails to more than one customer? There maybe a missing foreign key constraint on the core_email_queue_recipeints table, so when the cron job clears the core_email_queue table the recipients are left, and the truncation resets the primary key to 1, causing possible collisions of past customer email addresses with new […]...
Magento bugs and fixesMagento design
Blank Image

AW Blog Remove Blog Title from Meta title in post pages

If you need to remove the Blog title from the post title in AW_Blog for Magento then this is how to do it. using FTP open the following folder,  /app/code/community/AW/Blog/Helper Open post.php   Look for $action->getLayout()->getBlock(‘head’)->setTitle($blogTitle . $pageTitle); on line 38 Change to $action->getLayout()->getBlock(‘head’)->setTitle($pageTitle); That’s it. Now the home page of the blog uses the […]...
Magento bugs and fixes
Blank Image

Remove white image frame on images Magento

Are your images showing a white frame left and right or top and bottom on your images in magento? So you’ve uploaded your images and for no apparent reason they suddenly show a white border and look awful. The fix is in three maybe more places depending on your theme. The code that needs adding […]...
Magento bugs and fixesMagento Extensions
Blank Image

Installing Phoenix Worldpay on Magento 1.4 to 1.9

Installing Phoenix Worldpay on Magento This week saw a new issue with the Pheonix Worldpay magento module. So to save everyone some time. If you have the following issue. When you complete a transaction in test mode the customer isn’t redirected back to the /checkout/success page on your site. Follow this some more. We found […]...
Magento bugs and fixesMagento design
Blank Image

Remove compare to function Magento Easily

Removing the compare to option in the category layout of Magento  easily.   First navigate to /app/design/frontend/your_ theme/default/template/catalog/product or /app/design/frontend/default/default/template/catalog/product   and download list.phtml   Search for the following around line 75   <?php if($_compareUrl=$this->getAddToCompareUrl($_product)): ?> <li><span class=”separator”>|</span> <a href=”<?php echo $_compareUrl ?>” class=”link-compare”><?php echo $this->__(‘Add to Compare’) ?></a></li> <?php endif; ?>   now comment […]...
Magento bugs and fixes
Blank Image

Magento ads VAT twice at the checkout

So you set your Magento shop to have vat as a tax class and you’ve entered all your products into the back end using the vat inclusive price. So far so good. But when you add a product to the basket and then checkout your including vat price suddenly has vat added on again. The […]...
Magento bugs and fixesMagento Extensions
Blank Image

Nice layout for easytabs related products tab for Magento

As you may know the easytabs extension for Magento is nice but the layout on the related products tab is awful by default. Here is a nicer layout for you achieved by changing the code in app/design/frontend/your template/default/template/easytabs/catalogproductrelated.phtml you can play with the CSS if you want some different colours. Completely replace catalogproductrelated.phtml with this […]...